-
ImmutableIntArray.Builder.build()
Returns a new immutable array.
ImmutableIntArray.copyOf(int[] values)
Returns an immutable array containing the given values, in order.
Returns an immutable array containing the given values, in order.
Returns an immutable array containing the given values, in order.
Returns an immutable array containing all the values from stream, in order.
ImmutableIntArray.of(int e0)
Returns an immutable array containing a single value.
ImmutableIntArray.of(int e0,
int e1)
Returns an immutable array containing the given values, in order.
ImmutableIntArray.of(int first,
int... rest)
Returns an immutable array containing the given values, in order.
ImmutableIntArray.of(int e0,
int e1,
int e2)
Returns an immutable array containing the given values, in order.
ImmutableIntArray.of(int e0,
int e1,
int e2,
int e3)
Returns an immutable array containing the given values, in order.
ImmutableIntArray.of(int e0,
int e1,
int e2,
int e3,
int e4)
Returns an immutable array containing the given values, in order.
ImmutableIntArray.of(int e0,
int e1,
int e2,
int e3,
int e4,
int e5)
Returns an immutable array containing the given values, in order.
ImmutableIntArray.subArray(int startIndex,
int endIndex)
Returns a new immutable array containing the values in the specified range.
Returns an immutable array containing the same values as this array.
Appends values, in order, to the end of the values the built
ImmutableIntArray will contain.