Help for this page

Select Code to Download


  1. or download this
    my @checks = (
     [ qw/0 agency_id agency_id / ],
    ...
        (defined $result_ref->{$k} && $result_ref->{$k} != 0)
            && get_updates($objects[$idx], $key, $result_ref->{$k});
    }
    
  2. or download this
        $result_ref->{$k}
            && get_updates($objects[$idx], $key, $result_ref->{$k});
    
  3. or download this
    my @checks = qw(
        0 agency_id agency_id
    ...
        $result_ref->{$check} &&
            get_updates( @objects[$idx], $key, $result_ref->{$check} );
    }