import { Refinement } from "@tsplus/stdlib/data/Function"; import { SortedSet } from "@tsplus/stdlib/collections/SortedSet/definition"; import { Predicate } from "@tsplus/stdlib/data/Predicate"; /** * Partition the values of a set using the specified predicate. * @tsplus static SortedSet.Aspects partition * @tsplus pipeable SortedSet partition * @tsplus location "@tsplus/stdlib/collections/SortedSet/partition" */ export declare function partition(f: Refinement): (self: SortedSet) => readonly [SortedSet, SortedSet]; export declare function partition(f: Predicate): (self: SortedSet) => readonly [SortedSet, SortedSet]; //# sourceMappingURL=partition.d.ts.map