All Versions
17
Latest Version
Avg Release Cycle
-
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v0.5.3 Changes
- โ Added: OrderedMap/Set
- โ Added: Deprecation to Functions that are specific to Ordered interfaces in the SortedMap/Set
- โ Added: subFrom to Maps which is the counterpart of the addTo method
- โ Added: pourAsList and pourAsSet (booleans excluded for sets) to Iterable
- ๐ Fixed: ArrayList.grow had a small bug where it would trigger to early causing performance problems with exact sized collections.
- ๐ Fixed: FIFOQueue size constructor had a small bug where it would trigger a array enlargement when all elements were inserted.
-
v0.5.2 Changes
- ๐ Fixed: Bugs with Queues starting with the wrong size
- ๐ Fixed: ArrayGrowth for Queues was +1 instead of +50%
- โ Added: Benchmarks with java and FastUtil
-
v0.5.1 Changes
- ๐ Fixed: Reworked the NavigableSet/Map implementations of RBTree/AVLTree/Array Sets/Maps so they are now deemed stable.
- โ Added: Another 150k Unit tests.
- โ Added: List and Set Unit tests for Integer (or Primitives in this case) to ensure basic stability there. (Now covering all sets and lists)
- ๐ Fixed: Bugs with null values for primitive collections.
- โ Removed: ArraySet/Map subSet/subMap implementation was removed.
-
v0.5.0 Changes
- โ Added: 2 Helper functions to find out how many bits are required to store a Number.
- โ Added: pour function directly into Iterable which allows to collect all elements in the Iterable directly.
- โ Added: The new ToArray method from Java9 and newer into the library. Using a functional interface. (Just a backport)
- ๐ Changed: Reworked how the Map Builder functions are created. They are now in a SubClass that moves them out of the way. Less Clutter. (This might break things if that was used before)
- โ Added: Map Builder that allows now to Build Maps like Guava ImmutableMaps can be build. Note: This has a slight performance overhead.
- โ Added: Unmodifiable and Synchronize wrapper functions direclty into Collection Interfaces. This is mostly a quality of life thing.
- โ Added: Unmodifiable and Synchronized Wrapper Collections can now be cloned. They clone the underlying map which doesn't break functionality. (Had a usecase for it)
- โ Added: A boxed putAll array variant.
- ๐ Fixed: EnumMaps didn't keep track of their size and now got proper care and implementations as needed. There might be more work required but at least the core functionality is now up to date.
- โ Added: Tests for the new Stream replace functions to ensure no bugs are left.
- ๐ Fixed: Custom HashSet reduce function with a default value was checking incorrectly for present keys.
- โ Added: Guava TestSuit
- ๐ Fixed: HashCode and toString method would crash if the Object Key/Value was null
- โ Added: AbstractTypeCollection now delegates the contains check to type-specific Collections if it detects it.
- ๐ Fixed: Map.Entry toString wasn't writing values not like it should do.
- ๐ Fixed: Set.hashCode now is the sum of the elements instead of a Unique HashCode based on the elements.
- ๐ Fixed: Added missing NonNull Checks.
- ๐ Fixed: Custom/OpenHashMap.containsValue implementation was wrong.
- ๐ Fixed: Custom/OpenHashMap.compute/present/absent now works how it is specified in the Java Documentation
- ๐ Fixed: Custom/OpenHashMap.merge/BulkMerge now works how it is specified in the Java Documentation
- ๐ Fixed: Custom/Linked/OpenHashMap.keySet.remove was causing a infinite loop.
- ๐ Fixed: Custom/Linked/OpenHashMap.entrySet.contains was not correctly comparing the entry.
- ๐ Fixed: Custom/OpenHashMap.mapIterator now no longer crashes in certain cases.
- โ Added: Custom/LinkedOpenHashMap now takes use of the improved Iterator it has for containsValue
- ๐ Fixed: CustomOpenHashMap.keySet.forEach was basically putting out keys even if they were present
- ๐ Fixed: ImmutableMaps issues thanks to the tests. Roughly the same as the rest of the maps
- ๐ Fixed: RB/AVLTreeMaps issues. Roughly the same as the rest of the maps
- ๐ Fixed: SubLists are now properly implemented.
- ๐ Fixed: HashSet Iterator bugs now fixed... That was Painful.
- โ Added: Tests for Lists and Sets
-
v0.4.5 Changes
- โ Added: removeAll/retainAll(Collection c, Consumer r) which receives all the elements that got deleted from the collection
- ๐ Fixed: Supplier get function wasn't referencing original function.
- โ Added: addIfPresent/Absent to lists
- โ Added: distinct, limit and peek iterators
- โ Added: Iterable's can now reduce its contents
- โ Added: Better ForEach support for IterableWrappers so a Iterator chain is not created
- โ Added: SwapRemove to Lists which moves the last element into the desired space to be deleted
- โ Added: More Test cases
-
v0.4.4 Changes
- ๐ Fixed: ObjectArrayList.of was causing crashes because of a Poor implementation.
- โ Added: Unsorted HashMaps/Sets now throw Concurrent exceptions if they were modified during a rehash.
- โ Added: Array/Collection version of enqueue and enqueueFirst to PriorityQueues.
- โ Added: fillBuffer function into PrimitiveLists which allow to optimize JavaNio buffers if needed.
-
v0.4.3 Changes
- โ Added: Wrapper now support the Optimized Lambda replacer functions to improve performance.
- โ Added: FIFO Queue has now a minimum capacity and that is now checked more consistently.
-
v0.4.2 Changes
- โ Added: Lists/Sets/Maps/PriorityQueues are now copy-able. with the new copy() function. Note: subLists/subMaps/subSets or synchronize/unmodifyable wrappers do not support that function.
- ๐ Fixed: PriorityQueues didn't implement: hashCode/equals/toString
-
v0.4.1 Changes
- ๐ Changed: ForEach with input now provides input, value instead of value, input, this improves the usage of method references greatly
- โ Added: addAll with Array-types in collections.
- โ Added: Java Iterator/Iterable support for Stream replacing methods
- โ Added: Suppliers.
- โ Added: SupplyIfAbsent. It is ComputeIfAbsent but using suppliers
- โ Added: Count feature into Iterable
- ๐ Fixed: A couple bugs with the new StreamReplacing functions in LinkedCollections Iterating to Infinity
-
v0.4.0 Changes
- ๐ Changed: Iterable specific helper functions were moved out of Iterators and moved into Iterables
- โ Added: New Stream replacing functions: findFirst, matchesAny/All/None
- ๐ Fixed: Compute/ComputeIfAbsent/ComputeIfPresent/Merge/BulkMerge in maps now behave like they should.
- โ Added: Implementations for New Stream replacing functions.
- ๐ Changed: Removed a lot of duplicated forEach implementations
- โ Added: Flat/Mapping functions (to object) are now accessible to primitive maps.
- โ Added: Filter function to Iterators/Iterables (Iterable implements it by default)
- ๐ Changed: Cleanup of some variables/mappers
- โ Added/Fixed: AVL/RBTreeMap got reworked and SubMaps work more properly now. Also forEach support got improved a lot
- โ Added/Fixed: TreeSubSets (RB/AVL) got their functional implementations improved too.
- โ Added: Pairs are now a thing. In Mutable/Immutable Form