Read uint64_t value as varint from buffer. Sets error on failure.
| 582 | |
| 583 | /// Read uint64_t value as varint from buffer. Sets error on failure. |
| 584 | FORY_ALWAYS_INLINE uint64_t read_var_uint64(Error &error) { |
| 585 | return buffer().read_var_uint64(error); |
| 586 | } |
| 587 | |
| 588 | /// Read int64_t value as zigzag varint from buffer. Sets error on failure. |
| 589 | FORY_ALWAYS_INLINE int64_t read_var_int64(Error &error) { |
no outgoing calls