Help for this page

Select Code to Download


  1. or download this
    while (my $result = shift(@$rowcache) )
    
  2. or download this
    while (my ($result) = @$rowcache ? shift(@$rowcache) : ())
    
  3. or download this
    while ( defined(my $result = shift @$rowcache) )