Help for this page

Select Code to Download


  1. or download this
    $a // $b
    
  2. or download this
    defined $a ? $a : $b
    
  3. or download this
    $c //= $d;
    
  4. or download this
    $c = $d unless defined $c;
    
  5. or download this
      my $ref = \%database;
      $ref = $ref->{$_} //= {} for @$fields;
    
  6. or download this
        my $ref = \%database;
        foreach my $field (@$fields) {
    ...
            }
            $ref = $ref->{$field};
        }