Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/arrow-rs
/ extend
Method
extend
arrow-array/src/builder/generic_bytes_view_builder.rs:581–585 ·
view source on GitHub ↗
(&mut self, iter: I)
Source
from the content-addressed store, hash-verified
579
{
580
#[inline]
581
fn extend<I: IntoIterator<Item = Option<V>>>(&mut self, iter: I) {
582
for v in iter {
583
self.append_option(v)
584
}
585
}
586
}
587
588
/// Array builder for [`StringViewArray`][crate::StringViewArray]
Callers
3
append_array
Method · 0.45
try_append_value_n
Method · 0.45
test_string_view_deduplicate
Function · 0.45
Calls
1
append_option
Method · 0.45
Tested by
1
test_string_view_deduplicate
Function · 0.36