Say I have a hash of the form:
%hash = ( a => 1, b => 2, c => 3 , d => 4 , e => 5 , f => 6 );
Can I obtain a subset of such hash passing a value threshold of 3, obtaining the following %subhash
%subhash = ( c => 3 , d => 4 , e => 5 , f => 6 );
and without having to enter a loop? Thanks