Help for this page

Select Code to Download


  1. or download this
    sub hash_filter {
        my $source = shift;
    ...
            } keys %$filter
        }
    }
    
  2. or download this
    sub hash_filter {
        return {
    ...
            } grep { exists $_[0]->{$_} } keys %{$_[1]}
        }
    }