1
0
mirror of https://github.com/Luzifer/webcheck.git synced 2024-09-20 08:02:59 +00:00
webcheck/vendor/github.com/montanaflynn/stats/sum.go

19 lines
268 B
Go
Raw Normal View History

package stats
import "math"
// Sum adds all the numbers of a slice together
func Sum(input Float64Data) (sum float64, err error) {
if input.Len() == 0 {
return math.NaN(), EmptyInput
}
// Add em up
for _, n := range input {
sum += n
}
return sum, nil
}