List of usage examples for java.util PrimitiveIterator.OfDouble next
E next();
From source file:Main.java
public static void main(String[] args) { DoubleStream b = DoubleStream.of(1.1, 2.2, 3.3, 4.4, 5.5); PrimitiveIterator.OfDouble o = b.iterator(); while (o.hasNext()) { System.out.println(o.next()); }/*from w w w. ja v a 2 s . co m*/ }