github.com/MontFerret/ferret@v0.18.0/pkg/stdlib/math/average.go (about) 1 package math 2 3 import ( 4 "context" 5 6 "github.com/MontFerret/ferret/pkg/runtime/core" 7 "github.com/MontFerret/ferret/pkg/runtime/values" 8 "github.com/MontFerret/ferret/pkg/runtime/values/types" 9 ) 10 11 // AVERAGE Returns the average (arithmetic mean) of the values in array. 12 // @param {Int[] | Float[]} array - Array of numbers. 13 // @return {Float} - The average of the values in array. 14 func Average(_ context.Context, args ...core.Value) (core.Value, error) { 15 err := core.ValidateArgs(args, 1, 1) 16 17 if err != nil { 18 return values.None, err 19 } 20 21 err = core.ValidateType(args[0], types.Array) 22 23 if err != nil { 24 return values.None, err 25 } 26 27 arr := args[0].(*values.Array) 28 29 if arr.Length() == 0 { 30 return values.None, nil 31 } 32 33 var sum float64 34 35 arr.ForEach(func(value core.Value, idx int) bool { 36 err = core.ValidateType(value, types.Float, types.Int) 37 38 if err != nil { 39 return false 40 } 41 42 sum += toFloat(value) 43 44 return true 45 }) 46 47 if err != nil { 48 return values.None, nil 49 } 50 51 count := arr.Length() 52 53 return values.Float(sum / float64(count)), nil 54 }