import { concreteSortedSet } from "@tsplus/stdlib/collections/SortedSet/_internal/SortedSetInternal"
/**
* Calculate the number of keys in the set.
*
* @tsplus getter SortedSet size
*/
export function size(self: SortedSet): number {
concreteSortedSet(self)
return self.keyTree.size
}