Word description A version of nth-of that drills into a nested seq. Gets element n1 from nested-seq, then element n2 from that result, and so on, where n1, n2, etc come from index-seq. When index-seq is exhausted, the result is put on the stack.
Note that this usage of "deep" is different from those in sequences.deep.
Examples An empty index-seq leaves nested-seq on the stack:
Errors Throws a bounds-error if any of the indices are negative, or greater than or equal to the length of nested-seq (at the corresponding nesting level).