MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / is_null_unchecked

Method is_null_unchecked

nodedb-strict/src/decode.rs:377–380  ·  view source on GitHub ↗
(&self, tuple: &[u8], col_idx: usize)

Source from the content-addressed store, hash-verified

375 }
376
377 fn is_null_unchecked(&self, tuple: &[u8], col_idx: usize) -> bool {
378 let bitmap_byte = tuple[9 + col_idx / 8];
379 bitmap_byte & (1 << (col_idx % 8)) != 0
380 }
381}
382
383/// Extract a fixed Int64 column as a raw i64.

Callers 2

extract_fixed_rawMethod · 0.80
extract_variable_rawMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected