http://www.perlmonks.org?node_id=994520


in reply to Simplifying repeated parameter lists

TIMTOWTDI:

submit_thingamabob( $handle, $not_today, $thingie, $_->[0], $_->[1]) for ( [ "Foo!" , 234 ], [ "Frob!", 23 ], [ "Forb!", 54 ], [ "ooF!", 11 ], [ "broF!", fakenum ], [ "Frap!", 458 ] );

Replies are listed 'Best First'.
Re^2: Simplifying repeated parameter lists
by Voronich (Hermit) on Sep 19, 2012 at 20:16 UTC

    As much as I liked the hippo/BrowserUk solution, I think this appeals to me the most.

    It wraps the fundamentally iterative nature of what I'm doing without adding the slightest bit of unnecessary complexity.

Re^2: Simplifying repeated parameter lists
by GrandFather (Saint) on Sep 20, 2012 at 23:51 UTC

    or somewhat tidier:

    submit_thingamabob($handle, $not_today, $thingie, @$_) for [Foo => 234], [Frob => 23], [Forb => 54], [ooF => 11], [Frap = +> 458];
    True laziness is hard work