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

Method keys

arrow-array/src/array/dictionary_array.rs:356–358  ·  view source on GitHub ↗

Return an array view of the keys of this dictionary as a PrimitiveArray.

(&self)

Source from the content-addressed store, hash-verified

354
355 /// Return an array view of the keys of this dictionary as a PrimitiveArray.
356 pub fn keys(&self) -> &PrimitiveArray<K> {
357 &self.keys
358 }
359
360 /// If `value` is present in `values` (aka the dictionary),
361 /// returns the corresponding key (index into the `values`

Calls

no outgoing calls