Get returns the value addressed by keys using c's parsing options. SYS-REQ-115
(data []byte, keys ...string)
| 29 | // Get returns the value addressed by keys using c's parsing options. |
| 30 | // SYS-REQ-115 |
| 31 | func (c Config) Get(data []byte, keys ...string) ([]byte, ValueType, int, error) { |
| 32 | value, dataType, _, endOffset, err := internalGetConfig(c, data, keys...) |
| 33 | return value, dataType, endOffset, err |
| 34 | } |
| 35 | |
| 36 | // GetString returns the decoded string addressed by keys using c's parsing |
| 37 | // options. |