Erick Calder wrote:

I always prefer more flexibility so one thing I'd like to see is call
signatures that can take a hash or list of hashrefs so I can write:

        $y = { three => 'tre' };
        $x->(one => 'ett', two => 'tva', $y, etc => 'whatever');

The following should work without any change.

$x->( one => 'ett', two => 'tva', %$y, etc => 'whatever' );

Reply via email to