Help for this page

Select Code to Download


  1. or download this
    sub containsAll {
        my ($arrEverything, $arrRequire) = @_;
        my %stillRequired = map { $_ => 1 } @$arrRequire;
    ...
        }
        return %stillRequired ? 0 : 1;
    }