File: XS.pm

package info (click to toggle)
libperlx-maybe-xs-perl 1.001-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: pascal: 33; perl: 16; makefile: 3
file content (57 lines) | stat: -rw-r--r-- 1,100 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package PerlX::Maybe::XS;

use 5.008000;
use strict;
use warnings;

use Exporter 'import';

our %EXPORT_TAGS = (
	all      => [qw( maybe provided )],
	default  => [qw( maybe )],
);
our @EXPORT_OK = @{ $EXPORT_TAGS{all} };
our @EXPORT    = @{ $EXPORT_TAGS{default} };

our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION   = '1.001';

require XSLoader;
XSLoader::load('PerlX::Maybe::XS', $VERSION);

1;
__END__

=head1 NAME

PerlX::Maybe::XS - XS backend for PerlX::Maybe

=head1 SYNOPSIS

  use PerlX::Maybe;

=head1 DESCRIPTION

Nothing to see here; move along.

=head1 SEE ALSO

L<PerlX::Maybe>.

=head1 AUTHOR

Toby Inkster E<lt>tobyink@cpan.orgE<gt>.

=head1 COPYRIGHT AND LICENCE

This software is copyright (c) 2013-2014 by Toby Inkster.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=head1 DISCLAIMER OF WARRANTIES

THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.