Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for standardPollLast (0.1 sec)

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

        }
    
        @Override
        public @Nullable T pollFirst() {
          return standardPollFirst();
        }
    
        @Override
        public @Nullable T pollLast() {
          return standardPollLast();
        }
    
        @Override
        public SortedSet<T> headSet(T toElement) {
          return standardHeadSet(toElement);
        }
    
        @Override
        public SortedSet<T> tailSet(T fromElement) {
    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

       * If you override {@link #descendingIterator} you may wish to override {@link #pollLast} to
       * forward to this implementation.
       */
      @CheckForNull
      protected E standardPollLast() {
        return Iterators.pollNext(descendingIterator());
      }
    
      @ParametricNullness
      protected E standardFirst() {
        return iterator().next();
      }
    
      @ParametricNullness
    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