import { concreteSortedSet } from "@tsplus/stdlib/collections/SortedSet/_internal/SortedSetInternal"
/**
* @tsplus getter SortedSet values
*/
export function values(self: SortedSet): IterableIterator {
concreteSortedSet(self)
return self.keyTree.keys()
}