Help for this page

Select Code to Download


  1. or download this
    if ( ArrayRef[Int]->check( \@numbers ) ) {
      ...;
    }
    
  2. or download this
    if ( ( ArrayRef[Int] )->check( \@numbers ) ) {
      ...;
    }
    
  3. or download this
    if ( ArrayRef->of( Int )->check( \@numbers ) ) {
      ...;
    }