(key string)
| 853 | func GetUint64(key string) uint64 { return v.GetUint64(key) } |
| 854 | |
| 855 | func (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. |
| 860 | func GetFloat64(key string) float64 { return v.GetFloat64(key) } |