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

Method get_double

crates/paimon/src/spec/binary_row.rs:189–192  ·  view source on GitHub ↗
(&self, pos: usize)

Source from the content-addressed store, hash-verified

187 }
188
189 pub fn get_double(&self, pos: usize) -> crate::Result<f64> {
190 self.read_slice::<8>(self.field_offset(pos))
191 .map(f64::from_le_bytes)
192 }
193
194 fn resolve_var_length_field(&self, pos: usize) -> crate::Result<(usize, usize)> {
195 let field_off = self.field_offset(pos);

Callers 2

get_datumMethod · 0.80
extract_datumFunction · 0.80

Calls 1

field_offsetMethod · 0.45

Tested by

no test coverage detected