38766441fdb20ea3939b8b04796212e57d0c962a
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Undef.pm
1 package Moose::Autobox::Undef;
2 use Moose::Role 'with';
3
4 our $VERSION = '0.01';
5
6 with 'Moose::Autobox::Item';
7             
8 sub defined { 0 }
9
10 1;
11
12 __END__
13
14 =pod
15
16 =head1 NAME 
17
18 Moose::Autobox::Undef - the Undef role
19
20 =head1 SYNOPOSIS
21
22   use Moose::Autobox;
23   use autobox;
24
25 =head1 DESCRIPTION
26
27 =head1 BUGS
28
29 All complex software has bugs lurking in it, and this module is no 
30 exception. If you find a bug please either email me, or add the bug
31 to cpan-RT.
32
33 =head1 AUTHOR
34
35 Stevan Little E<lt>stevan@iinteractive.comE<gt>
36
37 =head1 COPYRIGHT AND LICENSE
38
39 Copyright 2006 by Infinity Interactive, Inc.
40
41 L<http://www.iinteractive.com>
42
43 This library is free software; you can redistribute it and/or modify
44 it under the same terms as Perl itself.
45
46 =cut