| SADI documentation | view source | Contained in the SADI distribution. |
SADI::Data::Boolean - A primitive SADI data type for booleans
use SADI::Data::Boolean;
# create a SADI Boolean with initial value of true
my $data = SADI::Data::Boolean->new ( value=>'true' );
my $data = SADI::Data::Boolean->new ('true');
my $data = SADI::Data::Boolean->new ();
# change the value to false
$data->value ('false');
# get the value
print $data->value;
An object representing a Boolan.
Edward Kawas (edward.kawas [at] gmail [dot] com) Martin Senger (martin.senger [at] gmail [dot] com)
Details are in SADI::Base. Here just a list of them (additionally to the attributes from the parent classes)
A value of this datatype. Must be a boolean (defaults to 1).
| SADI documentation | view source | Contained in the SADI distribution. |