import { concreteSortedMap } from "@tsplus/stdlib/collections/SortedMap/_internal/SortedMapInternal" /** * @tsplus static SortedMap.Aspects get * @tsplus pipeable SortedMap get */ export function get(key: K) { return (self: SortedMap): Maybe => { concreteSortedMap(self) return self.tree.findFirst(key) } }