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

Method append_nulls

arrow-array/src/builder/boolean_builder.rs:105–108  ·  view source on GitHub ↗
(&mut self, n: usize)

Source from the content-addressed store, hash-verified

103 /// Appends `n` `null`s into the builder.
104 #[inline]
105 pub fn append_nulls(&mut self, n: usize) {
106 self.null_buffer_builder.append_n_nulls(n);
107 self.values_builder.advance(n);
108 }
109
110 /// Appends an `Option<T>` into the builder
111 #[inline]

Callers

nothing calls this directly

Calls 2

append_n_nullsMethod · 0.80
advanceMethod · 0.45

Tested by

no test coverage detected