Return an array view of the keys of this dictionary as a PrimitiveArray.
(&self)
| 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` |
no outgoing calls