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

NAME

SPVM::Document::StandardFunction - SPVM Standard Function(BETA before 1.0)

SPVM Standard Function

FUNCTIONS

say

Print string with line break to stdout.

  sub say ($value : byte[]) : native void;

say_byte

Print byte value with line break to stdout.

  sub say_byte ($value : byte) : native void;

say_short

Print short value with line break to stdout.

  sub say_short ($value : short) : native void;

say_int

Print int value with line break to stdout.

  sub say_int ($value : int) : native void;

say_long

  sub say_long ($value : long) : native void;

say_float

Print float value with line break to stdout.

  sub say_float ($value : float) : native void;

say_double

Print double value with line break to stdout.

  sub say_double ($value : double) : native void;

print

Print string to stdout.

  sub print ($value : byte) : native void;

Print byte value to stdout.

  sub print_byte ($value : byte) : native void;

Print short value to stdout.

  sub print_short ($value : short) : native void;

Print int value to stdout.

  sub print_int ($value : int) : native void;

Print long value to stdout.

  sub print_long ($value : long) : native void;

Print float value to stdout.

  sub print_float ($value : float) : native void;

Print double value to stdout.

  sub print_double ($value : double) : native void;

say_err

Print string with line break to stderr.

  sub say_err ($value : byte[]) : native void;

say_err_byte

Print byte value with line break to stderr.

  sub say_err_byte ($value : byte) : native void;

say_err_short

Print short value with line break to stderr.

  sub say_err_short ($value : short) : native void;

say_err_int

Print int value with line break to stderr.

  sub say_err_int ($value : int) : native void;

say_err_long

Print long value with line break to stderr.

  sub say_err_long ($value : long) : native void;

say_err_float

Print float value with line break to stderr.

  sub say_err_float ($value : float) : native void;

say_err_double

Print double value with line break to stderr.

  sub say_err_double ($value : double) : native void;

Print string to stderr.

  sub print_err ($value : byte[]) : native void;

Print byte value to stderr.

  sub print_err_byte ($value : byte) : native void;

Print short value to stderr.

  sub print_err_short ($value : short) : native void;

Print int value to stderr.

  sub print_err_int ($value : int) : native void;

Print long value to stderr.

  sub print_err_long ($value : long) : native void;

Print float value to stderr.

  sub print_err_float ($value : float) : native void;

Print double value to stderr.

  sub print_err_double ($value : double) : native void;

time

Get epoch time.

  sub time () : native long;