Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for hasPrevious (0.19 sec)

  1. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

        return asList(hasNext, next, remove);
      }
    
      Stimulus<E, ListIterator<E>> hasPrevious =
          new Stimulus<E, ListIterator<E>>("hasPrevious") {
            @Override
            void executeAndCompare(ListIterator<E> reference, ListIterator<E> target) {
              assertEquals(reference.hasPrevious(), target.hasPrevious());
            }
          };
      Stimulus<E, ListIterator<E>> nextIndex =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/UnmodifiableListIteratorTest.java

            }
            return array[i++];
          }
    
          @Override
          public boolean hasPrevious() {
            return i > 0;
          }
    
          @Override
          public int nextIndex() {
            return i;
          }
    
          @Override
          public String previous() {
            if (!hasPrevious()) {
              throw new NoSuchElementException();
            }
            return array[--i];
          }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

        return asList(hasNext, next, remove);
      }
    
      Stimulus<E, ListIterator<E>> hasPrevious =
          new Stimulus<E, ListIterator<E>>("hasPrevious") {
            @Override
            void executeAndCompare(ListIterator<E> reference, ListIterator<E> target) {
              assertEquals(reference.hasPrevious(), target.hasPrevious());
            }
          };
      Stimulus<E, ListIterator<E>> nextIndex =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Lists.java

              forwardIterator.previous();
              canRemoveOrSet = false;
            }
    
            @Override
            public boolean hasNext() {
              return forwardIterator.hasPrevious();
            }
    
            @Override
            public boolean hasPrevious() {
              return forwardIterator.hasNext();
            }
    
            @Override
            @ParametricNullness
            public T next() {
              if (!hasNext()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 42.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/LinkedListMultimap.java

            next = current.next;
          }
          removeNode(current);
          current = null;
          expectedModCount = modCount;
        }
    
        @Override
        public boolean hasPrevious() {
          checkForConcurrentModification();
          return previous != null;
        }
    
        @CanIgnoreReturnValue
        @Override
        public Node<K, V> previous() {
          checkForConcurrentModification();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          }
    
          private ListIterator<V> getDelegateListIterator() {
            return (ListIterator<V>) getDelegateIterator();
          }
    
          @Override
          public boolean hasPrevious() {
            return getDelegateListIterator().hasPrevious();
          }
    
          @Override
          @ParametricNullness
          public V previous() {
            return getDelegateListIterator().previous();
          }
    
          @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        return () ->
            new Iterator<T>() {
              private final ListIterator<T> listIter = list.listIterator(list.size());
    
              @Override
              public boolean hasNext() {
                return listIter.hasPrevious();
              }
    
              @Override
              public T next() {
                return listIter.previous();
              }
    
              @Override
              public void remove() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ListsTest.java

        assertEquals("4", iterator.previous());
        assertEquals("3", iterator.previous());
        assertEquals("2", iterator.previous());
        assertTrue(iterator.hasPrevious());
        assertEquals("1", iterator.previous());
        assertFalse(iterator.hasPrevious());
        assertEquals(-1, iterator.previousIndex());
        try {
          iterator.previous();
          fail("did not detect beginning of list");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/IteratorsTest.java

      }
    
      @SuppressWarnings("DoNotCall")
      public void testEmptyListIterator() {
        ListIterator<String> iterator = Iterators.emptyListIterator();
        assertFalse(iterator.hasNext());
        assertFalse(iterator.hasPrevious());
        assertEquals(0, iterator.nextIndex());
        assertEquals(-1, iterator.previousIndex());
        assertThrows(NoSuchElementException.class, () -> iterator.next());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

      }
    
      @SuppressWarnings("DoNotCall")
      public void testEmptyListIterator() {
        ListIterator<String> iterator = Iterators.emptyListIterator();
        assertFalse(iterator.hasNext());
        assertFalse(iterator.hasPrevious());
        assertEquals(0, iterator.nextIndex());
        assertEquals(-1, iterator.previousIndex());
        assertThrows(NoSuchElementException.class, () -> iterator.next());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
Back to top