MCPcopy 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_iterMethod · 0.45
reserve_length_overflowFunction · 0.45

Calls 2

reserveMethod · 0.45
pushMethod · 0.45

Tested by 1