Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for standardHeadSet (0.07 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top