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

Method values

arrow-array/src/builder/map_builder.rs:148–150  ·  view source on GitHub ↗

Returns the value array builder of the map

(&mut self)

Source from the content-addressed store, hash-verified

146
147 /// Returns the value array builder of the map
148 pub fn values(&mut self) -> &mut V {
149 &mut self.value_builder
150 }
151
152 /// Returns both the key and value array builders of the map
153 pub fn entries(&mut self) -> (&mut K, &mut V) {

Calls

no outgoing calls