- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ArrayBasedBuilder (0.14 sec)
-
android/guava/src/com/google/common/collect/ImmutableCollection.java
*/ public abstract ImmutableCollection<E> build(); } abstract static class ArrayBasedBuilder<E> extends ImmutableCollection.Builder<E> { // The first `size` elements are non-null. @Nullable Object[] contents; int size; boolean forceCopy; ArrayBasedBuilder(int initialCapacity) { checkNonnegative(initialCapacity, "initialCapacity");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
* multiple lists in series. Each new list contains all the elements of the ones created before * it. * * @since 2.0 */ public static final class Builder<E> extends ImmutableCollection.ArrayBasedBuilder<E> { /** * Creates a new builder. The returned builder is equivalent to the builder generated by {@link * ImmutableList#builder}. */ public Builder() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0)