Example usage for java.util.stream LongStream sum

List of usage examples for java.util.stream LongStream sum

Introduction

In this page you can find the example usage for java.util.stream LongStream sum.

Prototype

long sum();

Source Link

Document

Returns the sum of elements in this stream.

Usage

From source file:Main.java

public static void main(String[] args) {
    LongStream b = LongStream.of(1L, 2L, 3L);
    long s = b.sum();
    System.out.println(s);/*from   www.ja va2 s  .co m*/
}