in reply to Re^2: Using Number Ranges in a Dispatch Table
in thread Using Number Ranges in a Dispatch Table

No need to double up on the parentheses
(map { $_ => 2 } 'B','C'), (map { $_ => 3 } 'D','E'),

Replies are listed 'Best First'.
Re^4: Using Number Ranges in a Dispatch Table
by ForgotPasswordAgain (Vicar) on Feb 19, 2012 at 01:27 UTC
    If we're being nitpicky :) no need to create a lexical block for map:
    $ perl -Mstrict -MData::Dumper -we'my%h=( (map +($_=>2), "B","C","D"), + one=>1 ); print Dumper(\%h)' $VAR1 = { 'one' => 1, 'D' => 2, 'C' => 2, 'B' => 2 };