import { Ord } from "@tsplus/stdlib/prelude/Ord/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stack } from "@tsplus/stdlib/data/Stack"; import type { Node } from "@tsplus/stdlib/collections/RedBlackTree/node"; /** * Visit nodes with key lower than max and greater then or equal to min. * @tsplus static RedBlackTree.Ops visitBetween * @tsplus location "@tsplus/stdlib/collections/RedBlackTree/visitBetween" */ export declare function visitBetween(node: Node, min: K, max: K, ord: Ord, visit: (key: K, value: V) => Maybe): Maybe; //# sourceMappingURL=visitBetween.d.ts.map