Updated Changelog a bit
This commit is contained in:
parent
ef0b9d23c3
commit
2f31d7b641
|
@ -12,6 +12,7 @@
|
||||||
- Changed: Cleanup of some variables/mappers
|
- 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: 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/Fixed: TreeSubSets (RB/AVL) got their functional implementations improved too.
|
||||||
|
- Added: Pairs are now a thing. In Mutable/Immutable Form
|
||||||
|
|
||||||
### Version 0.3.6
|
### Version 0.3.6
|
||||||
- Fixed: addAll non Type Specific Lists was causing crashes.
|
- Fixed: addAll non Type Specific Lists was causing crashes.
|
||||||
|
|
|
@ -14,6 +14,7 @@ But its focus is a different one.
|
||||||
- Streams
|
- Streams
|
||||||
- SplitIterators
|
- SplitIterators
|
||||||
- Iterators
|
- Iterators
|
||||||
|
- Pairs
|
||||||
|
|
||||||
## Specialized Functions
|
## Specialized Functions
|
||||||
New Specialized functions that were added to increase performance or reduce allocations or Quality Of life.
|
New Specialized functions that were added to increase performance or reduce allocations or Quality Of life.
|
||||||
|
|
|
@ -121,7 +121,7 @@ public interface PAIR KEY_VALUE_GENERIC_TYPE
|
||||||
/**
|
/**
|
||||||
* Sets the Key of the Pair.
|
* Sets the Key of the Pair.
|
||||||
* @param key the key that should be set.
|
* @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);
|
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.
|
* Sets the Value of the Pair.
|
||||||
* @param value the value that should be set.
|
* @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);
|
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
|
* Sets key and value of the Pair
|
||||||
* @param key the key that should be set.
|
* @param key the key that should be set.
|
||||||
* @param value the value 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);
|
public PAIR KEY_VALUE_GENERIC_TYPE set(KEY_TYPE key, VALUE_TYPE value);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue