...

Source file src/github.com/docker/go-metrics/helpers.go

Documentation: github.com/docker/go-metrics

     1  package metrics
     2  
     3  func sumFloat64(vs ...float64) float64 {
     4  	var sum float64
     5  	for _, v := range vs {
     6  		sum += v
     7  	}
     8  
     9  	return sum
    10  }
    11  

View as plain text