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

Method extend

arrow-array/src/builder/generic_bytes_builder.rs:301–305  ·  view source on GitHub ↗
(&mut self, iter: I)

Source from the content-addressed store, hash-verified

299impl<T: ByteArrayType, V: AsRef<T::Native>> Extend<Option<V>> for GenericByteBuilder<T> {
300 #[inline]
301 fn extend<I: IntoIterator<Item = Option<V>>>(&mut self, iter: I) {
302 for v in iter {
303 self.append_option(v)
304 }
305 }
306}
307
308/// Array builder for [`GenericStringArray`][crate::GenericStringArray]

Callers 3

append_nullsMethod · 0.45
append_arrayMethod · 0.45
test_extendFunction · 0.45

Calls 1

append_optionMethod · 0.45

Tested by 1

test_extendFunction · 0.36