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