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

Method append_n_nulls

arrow-buffer/src/builder/null.rs:127–130  ·  view source on GitHub ↗
(&mut self, n: usize)

Source from the content-addressed store, hash-verified

125 /// to indicate that these `n` items are nulls.
126 #[inline]
127 pub fn append_n_nulls(&mut self, n: usize) {
128 self.materialize_if_needed();
129 self.bitmap_builder.as_mut().unwrap().append_n(n, false);
130 }
131
132 /// Appends a `false` into the builder
133 /// to indicate that this item is null.

Callers 12

test_null_buffer_builderFunction · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80
append_nullsMethod · 0.80

Calls 2

materialize_if_neededMethod · 0.80
append_nMethod · 0.45