Example usage for java.util PrimitiveIterator.OfDouble next

List of usage examples for java.util PrimitiveIterator.OfDouble next

Introduction

In this page you can find the example usage for java.util PrimitiveIterator.OfDouble next.

Prototype

E next();

Source Link

Document

Returns the next element in the iteration.

Usage

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*/
}