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

Method append_value

arrow-array/src/builder/primitive_dictionary_builder.rs:323–325  ·  view source on GitHub ↗
(&mut self, value: V::Native)

Source from the content-addressed store, hash-verified

321 /// Panics if the resulting length of the dictionary values array would exceed `T::Native::MAX`
322 #[inline]
323 pub fn append_value(&mut self, value: V::Native) {
324 self.append(value).expect("dictionary key overflow");
325 }
326
327 /// Infallibly append a value to this builder repeatedly `count` times.
328 /// This is the same as `append_value` but allows to append the same value multiple times without doing multiple lookups.

Calls 1

appendMethod · 0.45