import { concreteSortedSet } from "@tsplus/stdlib/collections/SortedSet/_internal/SortedSetInternal"
/**
* @tsplus static SortedSet.Aspects has
* @tsplus pipeable SortedSet has
*/
export function has(value: A) {
return (self: SortedSet): boolean => {
concreteSortedSet(self)
return self.keyTree.has(value)
}
}