...

Source file src/github.com/redis/go-redis/v9/helper/helper.go

Documentation: github.com/redis/go-redis/v9/helper

     1  package helper
     2  
     3  import "github.com/redis/go-redis/v9/internal/util"
     4  
     5  func ParseFloat(s string) (float64, error) {
     6  	return util.ParseStringToFloat(s)
     7  }
     8  
     9  func MustParseFloat(s string) float64 {
    10  	return util.MustParseFloat(s)
    11  }
    12  

View as plain text