Home | History | Annotate | Download | only in collect

Lines Matching defs:headSet

658     public SortedSet<V> headSet(V toElement) {
661 getKey(), getSortedSetDelegate().headSet(toElement),
747 public NavigableSet<V> headSet(V toElement, boolean inclusive) {
748 return wrap(getSortedSetDelegate().headSet(toElement, inclusive));
1002 public SortedSet<K> headSet(K toElement) {
1074 public NavigableSet<K> headSet(K toElement) {
1075 return headSet(toElement, false);
1079 public NavigableSet<K> headSet(K toElement, boolean inclusive) {