Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ArrayItr (0.06 sec)

  1. android/guava/src/com/google/common/collect/Iterators.java

          return emptyListIterator();
        }
        return new ArrayItr<>(array, position);
      }
    
      private static final class ArrayItr<T extends @Nullable Object>
          extends AbstractIndexedListIterator<T> {
        static final UnmodifiableListIterator<Object> EMPTY = new ArrayItr<>(new Object[0], 0);
    
        private final T[] array;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

                            StringBuilder arrayStr = new StringBuilder();
                            if (value instanceof String[]) {
                                String[] arr = (String[]) value;
                                for (int i = 0; i < arr.length; i++) {
                                    if (i > 0)
                                        arrayStr.append(",");
                                    arrayStr.append(arr[i]);
                                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top