DoubleStream skip(long n) example

Description

DoubleStream skip(long n) returns a stream consisting of the remaining elements of this stream after discarding the first n elements of the stream.

Syntax

skip has the following syntax.


DoubleStream skip(long n)

Example

The following example shows how to use skip.


import java.util.stream.DoubleStream;
// ww  w.  j  a  v  a2 s  .c  o  m
public class Main {
  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);
  }
}

The code above generates the following result.





















Home »
  Java Streams »
    Reference »




Collectors
DoubleStream
DoubleStream.Builder
IntStream
IntStream.Builder
LongStream
LongStream.Builder
Stream
Stream.Builder