Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/arrow-rs
/ append_n
Method
append_n
arrow-buffer/src/builder/mod.rs:214–217 ·
view source on GitHub ↗
(&mut self, n: usize, v: T)
Source
from the content-addressed store, hash-verified
212
/// ```
213
#[inline]
214
pub fn append_n(&mut self, n: usize, v: T) {
215
self.reserve(n);
216
self.extend(std::iter::repeat_n(v, n))
217
}
218
219
/// Appends `n`, zero-initialized values
220
///
Callers
15
new_set
Method · 0.45
append_n_non_nulls
Method · 0.45
append_n_nulls
Method · 0.45
materialize
Method · 0.45
test_coalesce_filtered_mixed
Function · 0.45
concat_dictionaries
Function · 0.45
concat_lists
Function · 0.45
concat_list_view
Function · 0.45
concat_structs
Function · 0.45
take_fixed_size_binary_buffer_dynamic_length
Function · 0.45
boolean_mask_from_selectors
Function · 0.45
truncate_filter_after_n_trues
Function · 0.45
Calls
2
reserve
Method · 0.45
extend
Method · 0.45
Tested by
1
test_coalesce_filtered_mixed
Function · 0.36