List of usage examples for java.util.stream LongStream count
long count();
From source file:Main.java
public static void main(String[] args) { LongStream b = LongStream.empty(); System.out.println(b.count()); }
From source file:Main.java
public static void main(String[] args) { LongStream b = LongStream.of(1L, 2L, Long.MAX_VALUE, Long.MIN_VALUE); long o = b.count(); System.out.println(o);/*from w w w .jav a 2 s . c o m*/ }