Moose::Autobox::Defined - the Defined role


Moose-Autobox documentation Contained in the Moose-Autobox distribution.

Index


Code Index:

NAME

Top

Moose::Autobox::Defined - the Defined role

SYNOPOSIS

Top

  use Moose::Autobox;

  my $x;
  $x->defined; # false

  $x = 10;
  $x->defined; # true  

DESCRIPTION

Top

This is a role to describes a defined value.

METHODS

Top

defined
meta

BUGS

Top

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Top

Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Top


Moose-Autobox documentation Contained in the Moose-Autobox distribution.

package Moose::Autobox::Defined;
use Moose::Role 'with';

our $VERSION = '0.11';

with 'Moose::Autobox::Item';
            
sub defined { 1 }

1;

__END__