Sub returns new Viper instance representing a sub tree of this instance. Sub is case-insensitive for a key.
(key string)
| 765 | // Sub returns new Viper instance representing a sub tree of this instance. |
| 766 | // Sub is case-insensitive for a key. |
| 767 | func Sub(key string) *Viper { return v.Sub(key) } |
| 768 | |
| 769 | func (v *Viper) Sub(key string) *Viper { |
| 770 | subv := New() |