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

Method append

arrow-array/src/builder/union_builder.rs:210–216  ·  view source on GitHub ↗
(
        &mut self,
        type_name: &str,
        v: T::Native,
    )

Source from the content-addressed store, hash-verified

208 /// Appends a value to this builder.
209 #[inline]
210 pub fn append<T: ArrowPrimitiveType>(
211 &mut self,
212 type_name: &str,
213 v: T::Native,
214 ) -> Result<(), ArrowError> {
215 self.append_option::<T>(type_name, Some(v))
216 }
217
218 fn append_option<T: ArrowPrimitiveType>(
219 &mut self,

Callers 3

append_valueMethod · 0.45
append_nullMethod · 0.45
append_optionMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected