Skip to content

12.3.2

Compare
Choose a tag to compare
@bodil bodil released this 11 Mar 17:20
· 166 commits to master since this release
12.3.2
fef443b

Changed

  • Clone constraints on all data structures, as well as relevant constraints on maps and sets, have been relaxed where possible, so that you can now construct empty instances and call most query methods without requiring values implement Clone etc. (#63)

Fixed

  • Constructing an empty Vector will not allocate any heap memory, instead deferring allocation until you perform an operation that would increase its length. (#65)
  • Some bugs arising when using Vector::append repeatedly were fixed. (#67, #70)