Example usage for java.util.stream IntStream concat

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

Introduction

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

Prototype

public static IntStream concat(IntStream a, IntStream b) 

Source Link

Document

Creates a lazily concatenated stream whose elements are all the elements of the first stream followed by all the elements of the second stream.

Usage

From source file:Main.java

public static void main(String[] args) {
    IntStream i = IntStream.concat(IntStream.of(6, 5, 7, 1, 2, 3, 3), IntStream.of(9, 8));
    boolean d = i.allMatch(n -> n > 0);
    System.out.println(d);/*from ww  w .jav  a 2 s  . co  m*/
}

From source file:Main.java

public static void main(String[] args) {
    IntStream i = IntStream.concat(IntStream.of(6, 5, 7, 1, 2, 3, 3), IntStream.of(9, 8));
    IntStream d = i.map(n -> -n);
    d.forEach(System.out::println);
}