GetString resolves the compiled path and returns its string value. SYS-REQ-114
(data []byte)
| 182 | // GetString resolves the compiled path and returns its string value. |
| 183 | // SYS-REQ-114 |
| 184 | func (c CompiledPath) GetString(data []byte) (string, error) { |
| 185 | return GetString(data, c.parts...) |
| 186 | } |
| 187 | |
| 188 | // GetInt resolves the compiled path and returns its integer value. |
| 189 | // SYS-REQ-114 |
nothing calls this directly
no test coverage detected