()
| 13 | public interface SortedSet<T> extends Collection<T>, Iterable<T>, Set<T> { |
| 14 | public Comparator<? super T> comparator(); |
| 15 | public T first(); |
| 16 | public SortedSet<T> headSet(T toElement); |
| 17 | public T last(); |
| 18 | public SortedSet<T> subSet(T fromElement, T toElement); |
no outgoing calls
no test coverage detected