Hey guys,
I have some code set up to iterate through a nested map. It current works as expected, iterating through all values in the first key, and then the second key.
My question is, is there any way to display one value from each key?
For example, if key 0 contains a vector containing a b c d and key 1 contains a vector containing 1 2 3 4, would there be any way to output a 1 b 2 c 3 d 4, instead of a b c d 1 2 3 4?
I hope the question is clear.
Thanks!