Help for this page

Select Code to Download


  1. or download this
    sub isSubsetHash {
        my $count = my @small = split ':', $_[0];
    ...
        exists( $big{$_} ) && $count-- for @small;
        !$count;
    }