import { concreteSortedMap } from "@tsplus/stdlib/collections/SortedMap/_internal/SortedMapInternal" /** * @tsplus getter SortedMap headMaybe */ export function headMaybe(self: SortedMap): Maybe { concreteSortedMap(self) return self.tree.first }