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

Method append

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

Source from the content-addressed store, hash-verified

172 /// Returns an error if the key and values builders are in an inconsistent state.
173 #[inline]
174 pub fn append(&mut self, is_valid: bool) -> Result<(), ArrowError> {
175 self.validate_equal_lengths()?;
176 self.offsets_builder.push(self.key_builder.len() as i32);
177 self.null_buffer_builder.append(is_valid);
178 Ok(())
179 }
180
181 /// Append `n` nulls to this [`MapBuilder`]
182 ///

Callers 15

avro_writer.rsFile · 0.45
test_list_columnsFunction · 0.45
test_nested_recordsFunction · 0.45
test_nonnullable_impalaFunction · 0.45
append_nullMethod · 0.45
append_defaultMethod · 0.45
decodeMethod · 0.45
flushMethod · 0.45
append_valueMethod · 0.45

Calls 3

pushMethod · 0.45
lenMethod · 0.45