gitee.com/quant1x/num@v0.3.2/math32/round.go (about)

     1  package math32
     2  
     3  import "math"
     4  
     5  func Round(value float32) float32 {
     6  	return float32(math.Round(float64(value)))
     7  }