Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addAllImpl (0.04 sec)

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

        } else {
          return elementsEqual(thisList.iterator(), otherList.iterator());
        }
      }
    
      /** An implementation of {@link List#addAll(int, Collection)}. */
      static <E extends @Nullable Object> boolean addAllImpl(
          List<E> list, int index, Iterable<? extends E> elements) {
        boolean changed = false;
        ListIterator<E> listIterator = list.listIterator(index);
        for (E e : elements) {
          listIterator.add(e);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 42.2K bytes
    - Viewed (0)
Back to top