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