(key string)
| 832 | func GetUint(key string) uint { return v.GetUint(key) } |
| 833 | |
| 834 | func (v *Viper) GetUint(key string) uint { |
| 835 | return cast.ToUint(v.Get(key)) |
| 836 | } |
| 837 | |
| 838 | // GetUint16 returns the value associated with the key as an unsigned integer. |
| 839 | func GetUint16(key string) uint16 { return v.GetUint16(key) } |