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

Method read_i64_at

crates/paimon/src/spec/binary_row.rs:155–157  ·  view source on GitHub ↗
(&self, offset: usize)

Source from the content-addressed store, hash-verified

153 }
154
155 fn read_i64_at(&self, offset: usize) -> crate::Result<i64> {
156 self.read_slice::<8>(offset).map(i64::from_le_bytes)
157 }
158
159 fn read_i32_at(&self, offset: usize) -> crate::Result<i32> {
160 self.read_slice::<4>(offset).map(i32::from_le_bytes)

Callers 3

get_longMethod · 0.80
get_timestamp_rawMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected