MCPcopy Index your code
hub / github.com/Masterminds/sprig / minf

Function minf

numeric.go:58–65  ·  view source on GitHub ↗
(a interface{}, i ...interface{})

Source from the content-addressed store, hash-verified

56}
57
58func minf(a interface{}, i ...interface{}) float64 {
59 aa := toFloat64(a)
60 for _, b := range i {
61 bb := toFloat64(b)
62 aa = math.Min(aa, bb)
63 }
64 return aa
65}
66
67func until(count int) []int {
68 step := 1

Callers

nothing calls this directly

Calls 1

toFloat64Function · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…