Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Finding list elements in other lists.

by Hofmator (Curate)
on Oct 17, 2006 at 08:53 UTC ( #578712=note: print w/replies, xml ) Need Help??


in reply to Re: Finding list elements in other lists.
in thread Finding list elements in other lists.

I like your package solution, as well as the arguments for it. This package can easily be extended to work for any number of arrays, not only two. The calling code stays the same.
package All_In; use strict; use warnings; sub new { my $class = shift; my $self = []; for my $aref (@_) { my %h; @h{ @$aref } = (); push @$self, \%h; } bless $self, $class; } sub qualify { my $self = shift; for my $href (@$self) { return 0 if ! grep { exists $href->{$_} } @_; } return 1; } 1;

-- Hofmator

Code written by Hofmator and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://578712]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others perusing the Monastery: (1)
As of 2023-03-24 19:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (61 votes). Check out past polls.

    Notices?