A simple C++ map emulator for Rust. Probably not useful for anyone.
I needed a data structure that could emulate a C++ map, and it's pointer based interators. More specifically it needs to emulate the insertion position hint functionality as the keys I intend to use are not entirely transitive. i.e., searching for insertion position from the head or tail makes a big difference.
The current implementation uses a double linked Vec list and it only supports linear search.
Licensed under either of
at your option.