Help for this page

Select Code to Download


  1. or download this
       my $arrayref = getArrayref(); # this sometimes returned undef
       foreach my $value (@$arrayref) {
          ...
       }
    
  2. or download this
       if ( @$arrayref ) {
          ...
       }
    
  3. or download this
       if ( defined($arrayref) && @$arrayref ) {
          ...
       }