Lots of doc improvements for native delegations.
[gitmo/Moose.git] / lib / Moose / Meta / Attribute / Native / Trait / Bool.pm
CommitLineData
c466e58f 1package Moose::Meta::Attribute::Native::Trait::Bool;
e3c07b19 2use Moose::Role;
e3c07b19 3
efa728b4 4our $VERSION = '1.15';
e3c07b19 5$VERSION = eval $VERSION;
6our $AUTHORITY = 'cpan:STEVAN';
7
664e417b 8use Moose::Meta::Method::Accessor::Native::Bool::not;
9use Moose::Meta::Method::Accessor::Native::Bool::set;
10use Moose::Meta::Method::Accessor::Native::Bool::toggle;
11use Moose::Meta::Method::Accessor::Native::Bool::unset;
12
c466e58f 13with 'Moose::Meta::Attribute::Native::Trait';
e3c07b19 14
55a9d564 15sub _default_is { 'rw' }
2e069f5a 16sub _helper_type { 'Bool' }
2edb73d9 17
e3c07b19 18no Moose::Role;
19
e3c07b19 201;
21
22=pod
23
24=head1 NAME
25
2420461c 26Moose::Meta::Attribute::Native::Trait::Bool - Helper trait for Bool attributes
e3c07b19 27
28=head1 SYNOPSIS
29
30 package Room;
31 use Moose;
e3c07b19 32
33 has 'is_lit' => (
e132fd56 34 traits => ['Bool'],
35 is => 'rw',
36 isa => 'Bool',
37 default => 0,
38 handles => {
5f3663b2 39 illuminate => 'set',
40 darken => 'unset',
41 flip_switch => 'toggle',
42 is_dark => 'not',
9610c1d2 43 },
e3c07b19 44 );
45
46 my $room = Room->new();
e132fd56 47 $room->illuminate; # same as $room->is_lit(1);
48 $room->darken; # same as $room->is_lit(0);
49 $room->flip_switch; # same as $room->is_lit(not $room->is_lit);
50 return $room->is_dark; # same as !$room->is_lit
e3c07b19 51
52=head1 DESCRIPTION
53
54This provides a simple boolean attribute, which supports most of the
55basic math operations.
56
e3c07b19 57=head1 PROVIDED METHODS
58
e132fd56 59None of these methods accept arguments.
60
e3c07b19 61=over 4
62
e132fd56 63=item * B<set>
e3c07b19 64
e132fd56 65Sets the value to C<1> and returns C<1>.
e3c07b19 66
e132fd56 67=item * B<unset>
e3c07b19 68
e132fd56 69Set the value to C<0> and returns C<0>.
e3c07b19 70
e132fd56 71=item * B<toggle>
e3c07b19 72
157e0475 73Toggles the value. If it's true, set to false, and vice versa.
e3c07b19 74
e132fd56 75Returns the new value.
55a9d564 76
e132fd56 77=item * B<not>
55a9d564 78
e132fd56 79Equivalent of 'not C<$value>'.
55a9d564 80
55a9d564 81=back
82
e3c07b19 83=head1 BUGS
84
d4048ef3 85See L<Moose/BUGS> for details on reporting bugs.
e3c07b19 86
87=head1 AUTHOR
88
89Jason May
90
91=head1 COPYRIGHT AND LICENSE
92
93Copyright 2007-2009 by Infinity Interactive, Inc.
94
95L<http://www.iinteractive.com>
96
97This library is free software; you can redistribute it and/or modify
98it under the same terms as Perl itself.
99
100=cut