| MOSES-MOBY documentation | view source | Contained in the MOSES-MOBY distribution. |
MOSES::MOBY::Data::Integer - A primite Moby data type for integers
use MOSES::MOBY::Data::Integer; # create a Moby Integer with initial value of -15 my $data = MOSES::MOBY::Data::Integer->new (value => -15); # set/get the value of this data object $data->value (79); print $data->value();
An object representing an Integer, a Moby primitive data type.
Edward Kawas (edward.kawas [at] gmail [dot] com) Martin Senger (martin.senger [at] gmail [dot] com)
Details are in MOSES::MOBY::Base. Here just a list of them (additionally to the attributes from the parent classes)
A value of this datatype. Must be an integer.
| MOSES-MOBY documentation | view source | Contained in the MOSES-MOBY distribution. |