public static final class DoubleStreams.J8Builder extends Object
DoubleStream.Builder
interface.Modifier and Type | Method and Description |
---|---|
static DoubleStream.Builder |
add(DoubleStream.Builder this_,
double t)
Adds an element to the stream being built.
|
public static DoubleStream.Builder add(DoubleStream.Builder this_, double 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
builderIllegalStateException
- if the builder has already transitioned
to the built stateCopyright © 2015. All rights reserved.