reset
Resets and removes all unused values. It you need access to the removed key and values,
use Iterator.next_resetting directly
Parameters
- self:*Self
- *Self
Source
Implementation
pub fn reset(self: *Self) void {
var map_it = self.iterator();
while (map_it.next_resetting()) |_| {}
}