GetInt resolves the compiled path and returns its integer value. SYS-REQ-114
(data []byte)
| 188 | // GetInt resolves the compiled path and returns its integer value. |
| 189 | // SYS-REQ-114 |
| 190 | func (c CompiledPath) GetInt(data []byte) (int64, error) { |
| 191 | return GetInt(data, c.parts...) |
| 192 | } |
| 193 | |
| 194 | // Set writes value at the compiled path. |
| 195 | // Verifies: SYS-REQ-009 (Set) |