Returns the value array builder of the map
(&mut self)
| 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) { |
no outgoing calls