Help for this page

Select Code to Download


  1. or download this
    exists $$all_names{$name};
    %$all_names ~~ $name; # Shortcut using the smartmatch operator
    
  2. or download this
    @good = grep { %$all_names ~~ $_ } @arr_of_names;