-
Notifications
You must be signed in to change notification settings - Fork 272
/
operation.go
69 lines (56 loc) · 1.23 KB
/
operation.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package funk
import (
"fmt"
"reflect"
)
func calculate(arr interface{}, name string, operation rune) float64 {
value := redirectValue(reflect.ValueOf(arr))
valueType := value.Type()
kind := value.Kind()
if kind == reflect.Array || kind == reflect.Slice {
length := value.Len()
if length == 0 {
return 0
}
result := map[rune]float64{
'+': 0.0,
'*': 1,
}[operation]
for i := 0; i < length; i++ {
elem := redirectValue(value.Index(i)).Interface()
var value float64
switch e := elem.(type) {
case int:
value = float64(e)
case int8:
value = float64(e)
case int16:
value = float64(e)
case int32:
value = float64(e)
case int64:
value = float64(e)
case float32:
value = float64(e)
case float64:
value = e
}
switch operation {
case '+':
result += value
case '*':
result *= value
}
}
return result
}
panic(fmt.Sprintf("Type %s is not supported by %s", valueType.String(), name))
}
// Sum computes the sum of the values in array.
func Sum(arr interface{}) float64 {
return calculate(arr, "Sum", '+')
}
// Product computes the product of the values in array.
func Product(arr interface{}) float64 {
return calculate(arr, "Product", '*')
}