List of usage examples for java.util.stream IntStream reduce
OptionalInt reduce(IntBinaryOperator op);
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(6, 5, 7, 1, 2, 3, 3); OptionalInt v = i.reduce(Integer::sum); if (v.isPresent()) { System.out.println(v.getAsInt()); } else {/*from w w w . ja v a 2 s . c o m*/ System.out.println(v); } }