I'm using List::Compare to compare the Arrays in a Hash of Arrays. I can specify each array in the hash spicifically but since the hash may contain anywhere from 1 to 5 arrays, I'd like to pass all the arrays, without specifiying them, into the List::Compare constructor all at once using just the hash itself.

I've read the documentation for List::Compare but I can't figure it out.

Instead of constructing it like this:
List::Compare->new( \@{$hash{0}}, \@{$hash{1}}, \@{$hash{2}} );

I'd like consruct it like this just using the hash:
List::Compare->new( \%hash );

Here's the full code:

#!/usr/bin/perl -w use strict; use List::Compare; my @primary = qw( 1 2 3 4 ); my @secondary = qw ( 3 4 5); my @another = qw ( 4 5 6 7 ); my %hash; $hash{0} = \@primary; $hash{1} = \@secondary; $hash{2) = \@another; my $lc = List::Compare->new( \@{$hash{0}}, \@{$hash{1}}, \@{$hash{2}} +); # Would like to pass and compare every array in the hash without speci +fying each array in the hash. # my $lc = List::Compare->new( %hash ); # But I can't figure out how to get it to work my @intersection = $lc->get_intersection; print @intersection;

In reply to Comparing multiple arrays in Hash of Arrays using List::Compare by awohld

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.