Help for this page

Select Code to Download


  1. or download this
    my $hash_has_non_undef = sub { while (my ($key, $value) = each %hash) 
    +{ return 1 if defined $value } 0 }->();
    
  2. or download this
    @hash{keys %hash} = ();