Help for this page

Select Code to Download


  1. or download this
    my $selector = sub { $_[0] eq $whatever };
    
  2. or download this
    my $selector = sub {
                         my($obj)=@_;
    ...
                            return $obj eq $whatever;
                         }               
                       };