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

Method append_value

arrow-array/src/builder/primitive_builder.rs:204–207  ·  view source on GitHub ↗
(&mut self, v: T::Native)

Source from the content-addressed store, hash-verified

202 /// Appends a value of type `T` into the builder
203 #[inline]
204 pub fn append_value(&mut self, v: T::Native) {
205 self.null_buffer_builder.append_non_null();
206 self.values_builder.push(v);
207 }
208
209 /// Appends a value of type `T` into the builder `n` times
210 #[inline]

Calls 2

append_non_nullMethod · 0.80
pushMethod · 0.45