Package: effect
Module: RedBlackTree
Returns an iterator that points to the element at the specified index of the tree.
Note: The iterator will run through elements in reverse order.
Signature
declare const atReversed: { (index: number): <K, V>(self: RedBlackTree<K, V>) => Iterable<[K, V]>; <K, V>(self: RedBlackTree<K, V>, index: number): Iterable<[K, V]>; }
Since v2.0.0