Package: effect
Module: RedBlackTree
Visit each node of the tree in order with key greater then or equal to max.
Signature
declare const forEachGreaterThanEqual: { <K, V>(min: K, f: (key: K, value: V) => void): (self: RedBlackTree<K, V>) => void; <K, V>(self: RedBlackTree<K, V>, min: K, f: (key: K, value: V) => void): void; }
Since v2.0.0