Java Streams - DoubleStream.Builder accept(double t) example








DoubleStream.Builder accept(double t) adds an element to the stream being built.

Syntax

accept has the following syntax.

void accept(double t)

Example

The following example shows how to use accept.

import java.util.stream.DoubleStream;
/*from ww  w.  j  ava2  s .co  m*/
public class Main {
  public static void main(String[] args) {
    DoubleStream.Builder b = DoubleStream.builder();
    b.accept(1.1);
    b.accept(2.2);
    b.accept(3.3);
    b.accept(4.4);
    
    b.build().forEach(System.out::println);
  }
}

The code above generates the following result.