The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

SPVM::Comparator::Short - Interface Type for short Comparation Callback

SYNOPSYS

  use Comparator::Short;
  
  my $comparator = (Comparator::Short)method : int ($a : short, $b : short); {
    return $a <=> $b;
  };
  
  my $result = $comparator->(3, 5);

DESCRIPTION

Comparator::Short is the interface type for the short comparation callback.

INTERFACE METHODS

  required method : int ($a : short, $b : short);

This method must receive two values that types are short 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.