import { SortedMapInternal } from "@tsplus/stdlib/collections/SortedMap/_internal/SortedMapInternal" /** * @tsplus static SortedMap.Ops empty */ export function empty(ord: Ord): SortedMap { return new SortedMapInternal(RedBlackTree.empty(ord)) }