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

Name

SPVM::Long - A long value as An Object

Description

The Long class in SPVM represents a long value as an object.

Usage

  my $long_object = Long->new(5);
  my $long_value = $long_object->value;

Details

This class is immutable.

This class is automatically loaded.

Fields

value

has value : ro long;

The value.

Class Methods

new

static method new : Long ($value : long);

Creates a new Long object with a long $value.

Copyright & License

Copyright (c) 2023 Yuki Kimoto

MIT License