in reply to Formatting dynamic method names

Perhaps it should be

Method 2: --------- for ( keys %hash ) { $object->${ \"set_$_" }( $hash{$_} ); }

Update: concerning the question, I would prefer first method. It explains itself, so it is clear what it is doing even for newbie. Second statement, though shorter, will require more time to read and understand for some persons.

Replies are listed 'Best First'.
Re^2: Formatting dynamic method names
by clinton (Priest) on Oct 10, 2009 at 13:45 UTC
    You mean, without the space before the arrow? Yes, it should, but given that I use Perl::Tidy on my code, it's always going to put the space in there. Sorry - just realised that I'd left out the value :$ - will update