(key string)
| 846 | func GetUint32(key string) uint32 { return v.GetUint32(key) } |
| 847 | |
| 848 | func (v *Viper) GetUint32(key string) uint32 { |
| 849 | return cast.ToUint32(v.Get(key)) |
| 850 | } |
| 851 | |
| 852 | // GetUint64 returns the value associated with the key as an unsigned integer. |
| 853 | func GetUint64(key string) uint64 { return v.GetUint64(key) } |