Updated Changelog a bit

This commit is contained in:
Speiger 2021-09-19 22:34:46 +02:00
parent ef0b9d23c3
commit 2f31d7b641
3 changed files with 5 additions and 3 deletions

View File

@ -12,6 +12,7 @@
- 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
### Version 0.3.6
- Fixed: addAll non Type Specific Lists was causing crashes.

View File

@ -14,6 +14,7 @@ But its focus is a different one.
- Streams
- SplitIterators
- Iterators
- Pairs
## Specialized Functions
New Specialized functions that were added to increase performance or reduce allocations or Quality Of life.

View File

@ -121,7 +121,7 @@ public interface PAIR KEY_VALUE_GENERIC_TYPE
/**
* Sets the Key of the Pair.
* @param key the key that should be set.
* @return self or a new Pair instance with the new key. (Map.Entry may throw error)
* @return self or a new Pair instance with the new key.
*/
public PAIR KEY_VALUE_GENERIC_TYPE KEY_ENTRY(KEY_TYPE key);
/**
@ -132,7 +132,7 @@ public interface PAIR KEY_VALUE_GENERIC_TYPE
/**
* Sets the Value of the Pair.
* @param value the value that should be set.
* @return self or a new Pair instance with the new value. (Map.Entry may throw error)
* @return self or a new Pair instance with the new value.
*/
public PAIR KEY_VALUE_GENERIC_TYPE VALUE_ENTRY(VALUE_TYPE value);
@ -145,7 +145,7 @@ public interface PAIR KEY_VALUE_GENERIC_TYPE
* Sets key and value of the Pair
* @param key the key that should be set.
* @param value the value that should be set.
* @return self or a new Pair instance with the new key and value. (Map.Entry may throw error)
* @return self or a new Pair instance with the new key and value.
*/
public PAIR KEY_VALUE_GENERIC_TYPE set(KEY_TYPE key, VALUE_TYPE value);