The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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)

Create a new Long object with a long value.