effect-io-ai

Package: effect
Module: RedBlackTree

RedBlackTree.at

Returns an iterator that points to the element at the specified index of the tree.

Note: The iterator will run through elements in order.

Signature

declare const at: { (index: number): <K, V>(self: RedBlackTree<K, V>) => Iterable<[K, V]>; <K, V>(self: RedBlackTree<K, V>, index: number): Iterable<[K, V]>; }

Source

Since v2.0.0