MCPcopy Create free account
hub / github.com/apache/paimon-rust / write_byte

Method write_byte

crates/paimon/src/spec/binary_row.rs:434–437  ·  view source on GitHub ↗
(&mut self, pos: usize, value: i8)

Source from the content-addressed store, hash-verified

432 }
433
434 pub fn write_byte(&mut self, pos: usize, value: i8) {
435 let offset = self.field_offset(pos);
436 self.data[offset] = value as u8;
437 }
438
439 pub fn write_short(&mut self, pos: usize, value: i16) {
440 let offset = self.field_offset(pos);

Callers 3

write_datumMethod · 0.80
write_typed_valueFunction · 0.80

Calls 1

field_offsetMethod · 0.45

Tested by

no test coverage detected