MCPcopy Create free account
hub / github.com/apache/arrow-rs / append_non_null

Method append_non_null

arrow-buffer/src/builder/null.rs:116–122  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

114 /// to indicate that this item is not null.
115 #[inline]
116 pub fn append_non_null(&mut self) {
117 if let Some(buf) = self.bitmap_builder.as_mut() {
118 buf.append(true)
119 } else {
120 self.len += 1;
121 }
122 }
123
124 /// Appends `n` `false`s into the builder
125 /// to indicate that these `n` items are nulls.

Callers 15

appendMethod · 0.80
test_null_buffer_builderFunction · 0.80
append_toMethod · 0.80
append_valueMethod · 0.80
append_valueMethod · 0.80
finishMethod · 0.80
data_page_row_countsMethod · 0.80
decodeMethod · 0.80
decodeMethod · 0.80

Calls 1

appendMethod · 0.45