- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for ArrayIterator (2.52 sec)
-
src/main/java/org/codelibs/core/collection/ArrayIterator.java
assertArgumentNotNull("items", items); return () -> new ArrayIterator<>(items); } /** * Creates an {@link ArrayIterator}. * * @param items the array of elements to iterate (must not be {@literal null}) */ public ArrayIterator(final T... items) { this.items = items; } @Override public boolean hasNext() {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayIteratorTest.java
exception.expectMessage(is("index=2")); final ArrayIterator<Integer> itr = new ArrayIterator<Integer>(new Integer[] { 1, 2 }); itr.next(); itr.next(); itr.next(); } /** * */ @Test public void testHasNext() { final ArrayIterator<String> itr = new ArrayIterator<String>("A", "B"); assertThat(itr.hasNext(), is(true));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/ArrayMapTest.java
assertThat(i.next().getKey(), is("1")); assertThat(i.next().getKey(), is("2")); } /** * Test method for {@link org.seasar.util.collection.ArrayIterator#remove()} * . */ @Test public void testArrayIteratorRemoveException() { exception.expect(ClIllegalStateException.class); exception.expectMessage(is("last == -1"));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 10.7K bytes - Viewed (0) -
okhttp/src/androidMain/baseline-prof.txt
HSPLkotlin/internal/PlatformImplementationsKt;-><clinit>()V HSPLkotlin/io/CloseableKt;->closeFinally(Ljava/io/Closeable;Ljava/lang/Throwable;)V HSPLkotlin/jvm/internal/ArrayIterator;-><init>([Ljava/lang/Object;)V HSPLkotlin/jvm/internal/ArrayIterator;->hasNext()Z HSPLkotlin/jvm/internal/ArrayIterator;->next()Ljava/lang/Object; HSPLkotlin/jvm/internal/Intrinsics;->areEqual(Ljava/lang/Object;Ljava/lang/Object;)Z
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Dec 30 23:28:56 UTC 2024 - 127.9K bytes - Viewed (0)