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