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

Method append_value

arrow-array/src/builder/boolean_builder.rs:91–94  ·  view source on GitHub ↗
(&mut self, v: bool)

Source from the content-addressed store, hash-verified

89 /// Appends a value of type `T` into the builder
90 #[inline]
91 pub fn append_value(&mut self, v: bool) {
92 self.values_builder.append(v);
93 self.null_buffer_builder.append_non_null();
94 }
95
96 /// Appends a null slot into the builder
97 #[inline]

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
criterion_benchmarkFunction · 0.45
test_caseFunction · 0.45

Calls 2

append_non_nullMethod · 0.80
appendMethod · 0.45