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

Method append_null

arrow-array/src/builder/generic_list_builder.rs:272–275  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

270 /// See [`Self::append_value`] for an example use.
271 #[inline]
272 pub fn append_null(&mut self) {
273 self.offsets_builder.push(self.next_offset());
274 self.null_buffer_builder.append_null();
275 }
276
277 /// Appends `n` `null`s into the builder.
278 #[inline]

Callers 3

append_optionMethod · 0.45
test_with_fieldFunction · 0.45

Calls 2

pushMethod · 0.45
next_offsetMethod · 0.45

Tested by 1

test_with_fieldFunction · 0.36