Home | History | Annotate | Download | only in collect

Lines Matching defs:tailSet

91   public SortedSet<E> tailSet(E fromElement) {
92 return delegate().tailSet(fromElement);
106 * method of {@link #tailSet}. If you override {@link #tailSet}, you may wish
116 Object ceiling = self.tailSet(object).first();
129 * method of {@link #tailSet}. If you override {@link #tailSet}, you may wish
139 Iterator<Object> iterator = self.tailSet(object).iterator();
157 * terms of {@link #headSet(Object)} and {@link #tailSet(Object)}. In some
164 return tailSet(fromElement).headSet(toElement);