MCPcopy Create free account
hub / github.com/ashvardanian/StringZilla / write_u64

Method write_u64

rust/stringzilla.rs:682–684  ·  view source on GitHub ↗
(&mut self, i: u64)

Source from the content-addressed store, hash-verified

680 }
681 #[inline]
682 fn write_u64(&mut self, i: u64) {
683 self.write(&i.to_le_bytes());
684 }
685 #[inline]
686 fn write_u128(&mut self, i: u128) {
687 self.write(&i.to_le_bytes());

Callers

nothing calls this directly

Calls 1

writeMethod · 0.80

Tested by

no test coverage detected