(key string)
| 839 | func GetUint16(key string) uint16 { return v.GetUint16(key) } |
| 840 | |
| 841 | func (v *Viper) GetUint16(key string) uint16 { |
| 842 | return cast.ToUint16(v.Get(key)) |
| 843 | } |
| 844 | |
| 845 | // GetUint32 returns the value associated with the key as an unsigned integer. |
| 846 | func GetUint32(key string) uint32 { return v.GetUint32(key) } |