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

Method append_null

arrow-array/src/builder/generic_bytes_builder.rs:144–147  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

142 /// Append a null value into the builder.
143 #[inline]
144 pub fn append_null(&mut self) {
145 self.null_buffer_builder.append(false);
146 self.offsets_builder.push(self.next_offset());
147 }
148
149 /// Appends `n` `null`s into the builder.
150 #[inline]

Calls 3

appendMethod · 0.45
pushMethod · 0.45
next_offsetMethod · 0.45

Tested by 1

test_append_value_nFunction · 0.36