Here you can find the source of sum(List
public static int sum(List<Integer> lst)
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { public static int sum(List<Integer> lst) { return lst.stream().mapToInt(e->e).sum(); } }/*from w w w . ja va 2 s. co m*/