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

Method append_null

arrow-array/src/builder/primitive_builder.rs:218–221  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

216 /// Appends a null slot into the builder
217 #[inline]
218 pub fn append_null(&mut self) {
219 self.null_buffer_builder.append_null();
220 self.values_builder.push(T::Native::default());
221 }
222
223 /// Appends `n` no. of null's into the builder
224 #[inline]

Calls 2

defaultFunction · 0.85
pushMethod · 0.45