(O: Order<A>)
| 90 | * @category constructors |
| 91 | */ |
| 92 | export const empty = <A>(O: Order<A>): SortedSet<A> => fromTree(RBT.empty(O)) |
| 93 | |
| 94 | /** |
| 95 | * Creates a new `SortedSet` from an iterable collection of values. |
no test coverage detected
searching dependent graphs…