Example usage for java.util.stream IntStream distinct

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

Introduction

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

Prototype

IntStream 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) {
    IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3);
    i.distinct().forEach(System.out::println);
}