Closed
Description
I recently discovered that std::collections::HashMap
iterator iterates over all items in map for O(capacity), not O(length).
Indexmap probably can have iteration for O(length) using index based access. What is current complexity?