macro_rules! zip_maps {
($keys:expr, $($map:expr),+ $(,)?) => { ... };
}Expand description
Create an iterator over hashmaps with the same keys. Accepts a list of keys, and the maps to be iterated over. Panics if any of the keys are not found in the maps.