GetUint64 returns the value associated with the key as an unsigned integer.
(key string)
| 851 | |
| 852 | // GetUint64 returns the value associated with the key as an unsigned integer. |
| 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)) |