method BinarySearchTree.prototype.nlrValuesimport { BinarySearchTree } from "https://dotland.deno.dev/std@0.223.0/data_structures/mod.ts"; nlrValues(): IterableIterator<T>Returns an iterator that uses pre-order (NLR) tree traversal for retrieving values from the binary search tree. ReturnsIterableIterator<T>