Example usage for java.util.stream DoubleStream skip

List of usage examples for java.util.stream DoubleStream skip

Introduction

In this page you can find the example usage for java.util.stream DoubleStream skip.

Prototype

DoubleStream skip(long n);

Source Link

Document

Returns a stream consisting of the remaining elements of this stream after discarding the first n elements of the stream.

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);
    b.skip(2).forEach(System.out::println);
}