Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OnePlusArrayList (0.06 sec)

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

      }
    
      /**
       * @see Lists#asList(Object, Object[])
       */
      private static final class OnePlusArrayList<E extends @Nullable Object> extends AbstractList<E>
          implements Serializable, RandomAccess {
        @ParametricNullness final E first;
        final E[] rest;
    
        OnePlusArrayList(@ParametricNullness E first, E[] rest) {
          this.first = first;
          this.rest = checkNotNull(rest);
        }
    
    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