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

Method append_empty_values

arrow-array/src/builder/null_builder.rs:82–84  ·  view source on GitHub ↗
(&mut self, n: usize)

Source from the content-addressed store, hash-verified

80 /// Appends `n` `null`s into the builder.
81 #[inline]
82 pub fn append_empty_values(&mut self, n: usize) {
83 self.append_nulls(n);
84 }
85
86 /// Builds the [NullArray] and reset this builder.
87 pub fn finish(&mut self) -> NullArray {

Callers 2

test_null_array_builderFunction · 0.80

Calls 1

append_nullsMethod · 0.45

Tested by 2

test_null_array_builderFunction · 0.64