Example usage for java.util.stream LongStream distinct

List of usage examples for java.util.stream LongStream distinct

Introduction

In this page you can find the example usage for java.util.stream LongStream distinct.

Prototype

LongStream distinct();

Source Link

Document

Returns a stream consisting of the distinct elements of this stream.

Usage

From source file:Main.java

public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 1L, Long.MAX_VALUE, Long.MIN_VALUE);

    b.distinct().forEach(System.out::println);
}