NAME

SPVM::Util - Unix standard library

SYNOPSYS

use SPVM::Util;

# Stringify all object and join them by separator
my $objects = new Foo[3];
my $str = SPVM::Util->joino(",", $objects);

# Sleep 3 seconds

SPVM::Util->sleep(3);

DESCRIPTION

Unix standard library.

CLASS METHODS

joino

sub joino : string ($sep : string, $objects : oarray)

Stringify all objects and join them by specific separator. Each object must be assigned to SPVM::Stringer.

split

sub split : string[] ($sep : string, $string : string)

Split string by separator.