(key string)
| 811 | func GetInt32(key string) int32 { return v.GetInt32(key) } |
| 812 | |
| 813 | func (v *Viper) GetInt32(key string) int32 { |
| 814 | return cast.ToInt32(v.Get(key)) |
| 815 | } |
| 816 | |
| 817 | // GetInt64 returns the value associated with the key as an integer. |
| 818 | func GetInt64(key string) int64 { return v.GetInt64(key) } |