List of usage examples for java.util.stream IntStream reduce
int reduce(int identity, IntBinaryOperator op);
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3); int v = i.reduce(0, (n1, n2) -> n1 + n2); System.out.println(v);//from w w w .ja va2 s . com }