If I have a “t” like this:q) t: ( a: 1 2; b: (1 2!a
b; 3 4 5!x
y`z))and I want to “ungroup” the embedded dictionaries, so I do this:q) ungroup select a, k: key each b, v: value each b from ta k v------1 1 a1 2 b2 3 x2 4 y2 5 zSo that works. But I’m curious to know if there a more direct, moreefficient way?