1Data::Perl::Role::Bool(U3s)er Contributed Perl DocumentatDiaotna::Perl::Role::Bool(3)
2
3
4
6 Data::Perl::Role::Bool - Wrapping class for boolean values.
7
9 version 0.002009
10
12 use Data::Perl qw/bool/;
13
14 my $bool = bool(0);
15
16 $bool->toggle; # 1
17
18 $bool->unset; # 0
19
21 This class provides a wrapper and methods for interacting with boolean
22 values.
23
25 None of these methods accept arguments.
26
27 new($value)
28 Constructs a new Data::Perl::Collection::Bool object initialized
29 with the passed in value, and returns it.
30
31 set Sets the value to 1 and returns 1.
32
33 unset
34 Set the value to 0 and returns 0.
35
36 toggle
37 Toggles the value. If it's true, set to false, and vice versa.
38
39 Returns the new value.
40
41 not Equivalent of 'not $value'.
42
44 · Data::Perl
45
46 · MooX::HandlesVia
47
49 Matthew Phillips <mattp@cpan.org>
50
52 This software is copyright (c) 2014 by Matthew Phillips
53 <mattp@cpan.org>.
54
55 This is free software; you can redistribute it and/or modify it under
56 the same terms as the Perl 5 programming language system itself.
57
58
59
60perl v5.28.0 2014-06-27 Data::Perl::Role::Bool(3)