NAME

SPVM::Comparator::String - Comparator::String in SPVM | a callback interface for string comparation

SYNOPSYS

use Comparator::String;

my $comparator : Comparator::String = method : int ($a : string, $b : string); {
  return $a cmp $b;
};

my $result = $comparator->(3, 5);

DESCRIPTION

Comparator::String is a callback interface to compare two strings.

CALLBACK METHOD INTERFACE

method : int ($a : string, $b : string);

This method must receive two strings and return 1 if $a is more than $b, -1 if $x is less than $b, 0 if $a equals $b in the implementation.

This method is planned to be implemented in other classes.