write int64_t value to buffer.
| 232 | |
| 233 | /// write int64_t value to buffer. |
| 234 | FORY_ALWAYS_INLINE void write_int64(int64_t value) { |
| 235 | buffer_.write_int64(value); |
| 236 | } |
| 237 | |
| 238 | /// write uint32_t value as varint to buffer. |
| 239 | FORY_ALWAYS_INLINE void write_var_uint32(uint32_t value) { |
no outgoing calls