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

Method append

arrow-array/src/builder/generic_list_builder.rs:198–201  ·  view source on GitHub ↗
(&mut self, is_valid: bool)

Source from the content-addressed store, hash-verified

196 /// Panics if the length of [`Self::values`] exceeds `OffsetSize::MAX`
197 #[inline]
198 pub fn append(&mut self, is_valid: bool) {
199 self.offsets_builder.push(self.next_offset());
200 self.null_buffer_builder.append(is_valid);
201 }
202
203 /// Returns the next offset
204 ///

Calls 2

pushMethod · 0.45
next_offsetMethod · 0.45