in reply to Re: Is there a simple syntax to logically slice a hash?
in thread Is there a simple syntax to logically slice a hash?
Ouch!. That creates 5 unneccesary temporary lists and an unneccesary temporary array:
#T1 L2 L1 @a = grep { /cat/ } keys %h1 # L5 L4 L3 @b{@a} = @h1{@a}
|
|---|