/** * @tsplus static SortedSet.Ops __call * @tsplus static SortedSet.Ops make */ export function make( ord: Ord ): (...entries: Array) => SortedSet { return (...entries: Array) => SortedSet.from(ord)(entries) }