The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

SPVM::Std::TypeUtil - Standard Type utilities

CLASS METHODS

BYTE_MIN

sub BYTE_MIN : byte ()

A constant holding the minimum value a byte can have, -128.

BYTE_MAX

BYTE_MAX : byte ()

A constant holding the maximum value a byte can have, 127.

SHORT_MIN

sub SHORT_MIN : short ()

A constant holding the minimum value a short can have, -32768.

SHORT_MAX

sub SHORT_MAX : short ()

A constant holding the maximum value a short can have, 32767.

INT_MIN

sub INT_MIN : int ()

A constant holding the minimum value a int can have, -2147483648.

INT_MAX

sub INT_MAX : int ()

A constant holding the maximum value a int can have, 2147483647.

LONG_MIN

sub LONG_MIN : long ()

A constant holding the minimum value a long can have, -9223372036854775808.

LONG_MAX

sub LONG_MAX : long ()

A constant holding the maximum value a long can have, 9223372036854775807.

FLT_MIN

sub FLT_MIN : float ()

FLT_MAX

sub FLT_MAX : float ()

DBL_MIN

sub DBL_MIN : double ()

DBL_MAX

sub DBL_MAX : double ()