SPVM::Comparator::Long - Interface Type for long Comparation Callback
use Comparator::Long; my $comparator = (Comparator::Long)method : int ($a : long, $b : long); { return $a <=> $b; }; my $result = $comparator->(3, 5);
Comparator::Long is the interface type for the long comparation callback.
required method : int ($a : long, $b : long);
This method must receive two values that types are long and return the following value.
long
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.
To install SPVM, copy and paste the appropriate command in to your terminal.
cpanm
cpanm SPVM
CPAN shell
perl -MCPAN -e shell install SPVM
For more information on module installation, please visit the detailed CPAN module installation guide.