Skip to content

1.4.8 "Array of Sunshine"

Latest
Compare
Choose a tag to compare
@tommyettinger tommyettinger released this 07 Jan 14:16
· 121 commits to master since this release

This release started out being needed to fix a bug in the deque types, when the initial capacity was 0. It soon expanded to include many new overloads of addAll, removeAll, containsAll, containsAny, and sometimes removeEach, all able to take array or range of array (with an offset and length) arguments. From 1.4.7, there's more constructors available for FilteredString types. They also use a faster hashing algorithm that may also be better for the limited needs FilteredString sets and maps have. The dependency on digital is now up to 0.4.7 .

[1.4.8]

  • Deque types can be initialized with capacity 0, and now won't suddenly crash when an item is added.
  • Almost every type got some new methods, thanks to PrimitiveCollection adding overloads that take arrays or ranges of arrays.
  • The above change was also applied manually to Object-based Collection types.
  • Where appropriate, types have removeAll() and removeEach(), as well as containsAll() and containsAny().

[1.4.7]

  • The dependency on digital was updated to 0.4.7, which adds some potentially useful features, and has many more null checks.
  • Filtered sets and maps have the full range of constructors that maps and sets usually have, now.
  • The Filtered-String sets and maps use a different hashing algorithm now that takes advantage of how small a char is relative to a long.