NAME
SPVM::Comparator::Byte - A Callback Type for byte Comparation
SYNOPSYS
use Comparator::Byte;
my $comparator : Comparator::Byte = method : int ($a : byte, $b : byte); {
return $a <=> $b;
};
my $result = $comparator->(3, 5);
DESCRIPTION
Comparator::Byte is a callback type to compare two byte values.
CALLBACK METHOD
method : int ($a : byte, $b : byte);
The implementation must receive two numbers and return 1 if $a is more than $b, -1 if $x is less than $b, 0 if $a equals $b in the implementation.