Skip to content

12.1.0

Compare
Choose a tag to compare
@bodil bodil released this 25 Sep 14:00
· 224 commits to master since this release
12.1.0
5487ef8

Added

  • Maps and sets now have the clear method just like Vector. (#46)

Changed

  • Single chunk Vectors are no longer allocated directly on the stack, meaning that they're now comparable in performance to std::vec::Vec rather than slightly faster, but they also won't eat up your stack space quite as quickly, and they'll clone without copying and share structure with clones as you'd expect.