bump version
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Undef.pm
CommitLineData
5f654d8e 1package Moose::Autobox::Undef;
2use Moose::Role 'with';
3
5efb6885 4our $VERSION = '0.14';
5f654d8e 5
6with 'Moose::Autobox::Item';
7
8sub defined { 0 }
9
31d40d73 101;
11
12__END__
13
14=pod
15
16=head1 NAME
17
18Moose::Autobox::Undef - the Undef role
19
20=head1 SYNOPOSIS
21
22 use Moose::Autobox;
5272f13f 23
24 my $x;
25 $x->defined; # false
31d40d73 26
27=head1 DESCRIPTION
28
8937074a 29This is a role to describes a undefined value.
30
260cc81f 31=head1 METHODS
32
33=over 4
34
260cc81f 35=item B<defined>
36
37=back
38
5272f13f 39=over 4
40
41=item B<meta>
42
43=back
44
31d40d73 45=head1 BUGS
46
47All complex software has bugs lurking in it, and this module is no
48exception. If you find a bug please either email me, or add the bug
49to cpan-RT.
50
51=head1 AUTHOR
52
53Stevan Little E<lt>stevan@iinteractive.comE<gt>
54
55=head1 COPYRIGHT AND LICENSE
56
ea4e64bf 57Copyright 2006-2008 by Infinity Interactive, Inc.
31d40d73 58
59L<http://www.iinteractive.com>
60
61This library is free software; you can redistribute it and/or modify
62it under the same terms as Perl itself.
63
caac33a3 64=cut