(&self)
| 41 | impl<K: ArrowNativeType + Ord, V: OffsetSizeTrait> DictionaryBuffer<K, V> { |
| 42 | #[allow(unused)] |
| 43 | pub fn len(&self) -> usize { |
| 44 | match self { |
| 45 | Self::Dict { keys, .. } => keys.len(), |
| 46 | Self::Values { values } => values.len(), |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | /// Returns a mutable reference to a keys array |
| 51 | /// |
no outgoing calls