public static final class LongStreams.J8Builder
extends java.lang.Object
LongStream.Builder interface.| Modifier and Type | Method and Description |
|---|---|
static LongStream.Builder |
add(LongStream.Builder this_,
long t)
Adds an element to the stream being built.
|
public static LongStream.Builder add(LongStream.Builder this_, long t)
Implementation Requirements:
The default implementation behaves as if:
accept(t)
return this;
this_ - the Builder used to build the streamt - the element to addthis builderjava.lang.IllegalStateException - if the builder has already transitioned
to the built state