MCPcopy
hub / github.com/spf13/viper / GetUint64

Method GetUint64

viper.go:855–857  ·  view source on GitHub ↗
(key string)

Source from the content-addressed store, hash-verified

853func GetUint64(key string) uint64 { return v.GetUint64(key) }
854
855func (v *Viper) GetUint64(key string) uint64 {
856 return cast.ToUint64(v.Get(key))
857}
858
859// GetFloat64 returns the value associated with the key as a float64.
860func GetFloat64(key string) float64 { return v.GetFloat64(key) }

Callers 2

TestMergeConfigFunction · 0.80
GetUint64Function · 0.80

Calls 1

GetMethod · 0.95

Tested by 1

TestMergeConfigFunction · 0.64