rust/src/libcollections
Chase Southwood 81f9a31926 Change VecMap's iterators to use wrapper structs instead of typedefs.
Using a type alias for iterator implementations is fragile since this
exposes the implementation to users of the iterator, and any changes
could break existing code.

This commit changes the iterators of `VecMap` to use
proper new types, rather than type aliases.  However, since it is
fair-game to treat a type-alias as the aliased type, this is a:

[breaking-change].
2014-12-13 20:14:42 -06:00
..
2014-12-13 17:03:45 -05:00
2014-12-13 17:03:45 -05:00
2014-12-13 17:03:47 -05:00