12.1.0
Added
- Maps and sets now have the
clear
method just likeVector
. (#46)
Changed
- Single chunk
Vector
s are no longer allocated directly on the stack, meaning that they're now comparable in performance tostd::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.