AllKeys returns all keys holding a value, regardless of where they are set. Nested keys are returned with a v.keyDelim separator.
()
| 1884 | // AllKeys returns all keys holding a value, regardless of where they are set. |
| 1885 | // Nested keys are returned with a v.keyDelim separator. |
| 1886 | func AllKeys() []string { return v.AllKeys() } |
| 1887 | |
| 1888 | func (v *Viper) AllKeys() []string { |
| 1889 | m := map[string]bool{} |