(key string)
| 804 | func GetInt(key string) int { return v.GetInt(key) } |
| 805 | |
| 806 | func (v *Viper) GetInt(key string) int { |
| 807 | return cast.ToInt(v.Get(key)) |
| 808 | } |
| 809 | |
| 810 | // GetInt32 returns the value associated with the key as an integer. |
| 811 | func GetInt32(key string) int32 { return v.GetInt32(key) } |