Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/collections/trees/bs_tree.ts>BSTree#nlrValues

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Very Popular
Latest
method BSTree.prototype.nlrValues
import { BSTree } from "https://deno.land/x/collections@0.12.1/trees/bs_tree.ts";

Returns an iterator that uses pre-order (NLR) tree traversal for retrieving values from the binary search tree.

Returns

IterableIterator<T>