Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/arrow-rs
/ append
Method
append
arrow-buffer/src/builder/mod.rs:196–199 ·
view source on GitHub ↗
(&mut self, v: T)
Source
from the content-addressed store, hash-verified
194
/// ```
195
#[inline]
196
pub fn append(&mut self, v: T) {
197
self.reserve(1);
198
self.buffer.push(v);
199
}
200
201
/// Appends a value of type `T` into the builder N times,
202
/// growing the internal buffer as needed.
Callers
3
from_iter
Method · 0.45
test_extend_trusted_len_then_append
Function · 0.45
reserve_length_overflow
Function · 0.45
Calls
2
reserve
Method · 0.45
push
Method · 0.45
Tested by
1
test_extend_trusted_len_then_append
Function · 0.36