Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for standardHeadSet (0.25 sec)

  1. android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java

        }
    
        @Override
        public @Nullable T pollLast() {
          return standardPollLast();
        }
    
        @Override
        public SortedSet<T> headSet(T toElement) {
          return standardHeadSet(toElement);
        }
    
        @Override
        public SortedSet<T> tailSet(T fromElement) {
          return standardTailSet(fromElement);
        }
      }
    
      public static Test suite() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableSet.java

       * boolean)} method. If you override {@link #headSet(Object, boolean)}, you may wish to override
       * {@link #headSet(Object)} to forward to this implementation.
       */
      protected SortedSet<E> standardHeadSet(@ParametricNullness E toElement) {
        return headSet(toElement, false);
      }
    
      @Override
      public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingNavigableSet.java

       * boolean)} method. If you override {@link #headSet(Object, boolean)}, you may wish to override
       * {@link #headSet(Object)} to forward to this implementation.
       */
      protected SortedSet<E> standardHeadSet(@ParametricNullness E toElement) {
        return headSet(toElement, false);
      }
    
      @Override
      public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

          return forward.tailSet(toElement, inclusive).descendingSet();
        }
    
        @Override
        public SortedSet<E> headSet(@ParametricNullness E toElement) {
          return standardHeadSet(toElement);
        }
    
        @Override
        public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
          return forward.headSet(fromElement, inclusive).descendingSet();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

          return forward.tailSet(toElement, inclusive).descendingSet();
        }
    
        @Override
        public SortedSet<E> headSet(@ParametricNullness E toElement) {
          return standardHeadSet(toElement);
        }
    
        @Override
        public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
          return forward.headSet(fromElement, inclusive).descendingSet();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top