Billy Rieger
Billy Rieger
A more consistent API naming scheme for bimaps would be: - `fn method_left()` and `fn method_right()` for methods that operate on each half of the bimap. - `fn method()` for...
Using generic associated types it's possible to create a fully generic bimap where the left and right map types can be specified independently. Inner maps would be constrained by a...
The internal references in a BiMap are limited to exactly two pointers per value, one for each map. I think it's possible to convert to compile-time reference counting which should...