MCPcopy Create free account
hub / github.com/apache/fory / write_i64

Method write_i64

rust/fory-core/src/buffer.rs:133–135  ·  view source on GitHub ↗
(&mut self, value: i64)

Source from the content-addressed store, hash-verified

131
132 #[inline(always)]
133 pub fn write_i64(&mut self, value: i64) {
134 self.write_u64(value as u64);
135 }
136
137 // ============ VARINT64 (TypeId = 7) ============
138

Callers 10

write_tagged_i64Method · 0.80
write_typed_payloadFunction · 0.80
fory_write_dataMethod · 0.80
writeMethod · 0.80
to_bytesMethod · 0.80
test_bufferFunction · 0.80
prepare_i64_bufferFunction · 0.80
bench_write_i64Function · 0.80

Calls 1

write_u64Method · 0.80

Tested by 2

test_bufferFunction · 0.64