SortedSet<T>.from constructor
Creates a SortedSet containing the elements of the given iterable.
Implementation
SortedSet.from(Iterable<T> elements, [this._compare])
: _container = collection.SplayTreeSet<T>.from(elements, _compare);