Here you can find the source of total(long[] array)
public static long total(long[] array)
//package com.java2s; public class Main { public static long total(long[] array) { long total = 0; for (long value : array) { total += value;//from ww w .jav a 2s. c o m } return total; } }