v0-2-0: Performance and convenience
Changelog
- The CommandMap data type now uses an
unordered_map
for O(1) lookup instead of O(log(n)) lookup asmap
does - Added a python script to generate the pdf documentation and versioned the doxyfile for convenience purposes
Breaking changes
If you relied on commands being iterated in the same order that they were inserted in, this will break your code, as unordered_map
has no particular order, so "iterating" over it is more like traversal.
What's Changed
New Contributors
Full Changelog: header...v0-2