Home | History | Annotate | Download | only in collect

Lines Matching defs:tailSet

124     @Override public NavigableSet<E> tailSet(E fromElement, boolean inclusive) {
126 return delegate().tailSet(fromElement, inclusive);
129 @Override public SortedSet<E> tailSet(E fromElement) {
130 return tailSet(fromElement, true);
214 SortedSet<String> tailSet = map.tailSet("a");
215 assertTrue(tailSet instanceof SynchronizedSortedSet);
216 assertSame(MUTEX, ((SynchronizedSortedSet<String>) tailSet).mutex);
221 NavigableSet<String> tailSet = map.tailSet("a", true);
222 assertTrue(tailSet instanceof SynchronizedNavigableSet);
223 assertSame(MUTEX, ((SynchronizedNavigableSet<String>) tailSet).mutex);