-
ImmutableLongArray.Builder.build()
Returns a new immutable array.
ImmutableLongArray.copyOf(long[] 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.
ImmutableLongArray.of(long e0)
Returns an immutable array containing a single value.
ImmutableLongArray.of(long e0,
long e1)
Returns an immutable array containing the given values, in order.
ImmutableLongArray.of(long first,
long... rest)
Returns an immutable array containing the given values, in order.
ImmutableLongArray.of(long e0,
long e1,
long e2)
Returns an immutable array containing the given values, in order.
ImmutableLongArray.of(long e0,
long e1,
long e2,
long e3)
Returns an immutable array containing the given values, in order.
ImmutableLongArray.of(long e0,
long e1,
long e2,
long e3,
long e4)
Returns an immutable array containing the given values, in order.
ImmutableLongArray.of(long e0,
long e1,
long e2,
long e3,
long e4,
long e5)
Returns an immutable array containing the given values, in order.
ImmutableLongArray.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
ImmutableLongArray will contain.