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

Method write_i32

rust/stringzilla.rs:702–704  ·  view source on GitHub ↗
(&mut self, i: i32)

Source from the content-addressed store, hash-verified

700 }
701 #[inline]
702 fn write_i32(&mut self, i: i32) {
703 self.write(&i.to_le_bytes());
704 }
705 #[inline]
706 fn write_i64(&mut self, i: i64) {
707 self.write(&i.to_le_bytes());

Callers

nothing calls this directly

Calls 1

writeMethod · 0.80

Tested by

no test coverage detected