GetUint32 returns the value associated with the key as an unsigned integer.
(key string)
| 844 | |
| 845 | // GetUint32 returns the value associated with the key as an unsigned integer. |
| 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)) |