Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Re: Re: Creating tuples based on sets

by waxmop (Beadle)
on Apr 16, 2003 at 15:42 UTC ( [id://250942]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Creating tuples based on sets
in thread Creating tuples based on sets

Yeah, I need the function to fit any of these situations:

my @set1 = qw(A B C D); my @set2 = qw(X Y Z); mk_tuples(@set1, 2); mk_tuples(@set2, 5);
etc...

Here's a side question. How come this doesnt' work in perl?

mk_tuples(["A", "B"], 3);
I can't replace an array with just a list of elements.

Replies are listed 'Best First'.
Re: Re: Re: Re: Creating tuples based on sets
by perlguy (Deacon) on Apr 16, 2003 at 15:50 UTC

    but you can... try this:

    my $arrayref = ["A", "B"]; print join "\n", @$arrayref;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (None)
    As of 2024-09-10 04:30 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found

      Notices?
      erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.