Name
SPVM::Long - Long Class
Usage
my $long_object = Long->new(5);
my $long_value = $long_object->value;
$long_object->set_value(10);
Description
Long
is the class to hold a value of the long
type.
This class is automatically loaded.
Fields
value
has value : rw long;
The value.
Class Methods
new
static method new : Long ($value : long);
Creates a new Long object with a long
$value
.