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

Method append_slice

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

Source from the content-addressed store, hash-verified

119 /// Appends a slice of type `T` into the builder
120 #[inline]
121 pub fn append_slice(&mut self, v: &[bool]) {
122 self.values_builder.append_slice(v);
123 self.null_buffer_builder.append_n_non_nulls(v.len());
124 }
125
126 /// Appends n `additional` bits of value `v` into the buffer
127 #[inline]

Calls 2

append_n_non_nullsMethod · 0.80
lenMethod · 0.45