ber, Null and Boolean. Perl lacks native
Boolean support.
Data interchange modules like YAML and JSON can now C<use boolean> to
encodeI<decode>roundtrip Boolean values.
=head1 FUNCTIONS
This module
ecated.
=head1 JSON SUPPORT
JSON::MaybeXS (or less preferably JSON.pm ) will encode Perl data with
boolean.pm values correctly if you use the C<convert_blessed> option:
use JSON::MaybeXS;
u
se boolean -truth;
my $json = JSON::MaybeXS->new->convert_blessed;
say $json->encode({false => (0 == 1)}); # Says: '{"false":false}',
=head1 AUTHOR
Ingy döt Net <ingy@cpan.org>
=head1