Is there a better/shorter way to lookup a dictionary by index

… the following homemade function:

idicval:{y (flip enlist key y) x}        /with <x> index position, <y> dictionary

Thx in advance,

JP

If you just require the value returned as in your current version:
{value[y]x} 

{value[y]x} 

Yep, indeed… Thx to both, Paul & Michael

Hi,

Just another form of above answer,

{ (value y) x}

Thanks ,

Mahesh Pancha