NAME
SPVM::Comparator::String - Interface Type for String Comparation Callback
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 the interface type for the string comparation callback.
INTERFACE METHODS
required method : int ($a : string, $b : string);
This method must receive two values that types are string
and return the following value.
If the first argument is greater than the second argument, returns 1
. If the first argument is lower than the second argument, returns -1
. If the first argument is equal to the second argument, returns 0
.