Updated Docs
This commit is contained in:
@@ -1,5 +1,18 @@
|
|||||||
# Changelog of versions
|
# Changelog of versions
|
||||||
|
|
||||||
|
### Version 1.0.0
|
||||||
|
-Added: Sequenced Collections support.
|
||||||
|
-Added: ReferenceMaps
|
||||||
|
-Added: IndirectSorting
|
||||||
|
-Added: Missing Optionals
|
||||||
|
-Added: Collectors for Lists and Sets
|
||||||
|
-Added: ReverseCollections for Sequenced/OrderedCollections
|
||||||
|
-Breaking Change: FindFirst & reduce without identity use now Optionals instead of defaultValues
|
||||||
|
-Breaking Change: Lists and OrderedSets no longer use Poll prefix they use now the java Remove
|
||||||
|
-Fixed: #33
|
||||||
|
-Fixed: Add/PutAndMoveToFirst wouldn't work if the collection was only with 1 entry present.
|
||||||
|
-Fixed: Various new bugs found with the expansion of the unit tests.
|
||||||
|
|
||||||
### Version 0.9.0
|
### Version 0.9.0
|
||||||
- Added: getFirst/getLast/removeFirst/removeLast to List.class.
|
- Added: getFirst/getLast/removeFirst/removeLast to List.class.
|
||||||
- Added: Dedicated Set toArray implementations.
|
- Added: Dedicated Set toArray implementations.
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ Such as pruning classes that are not needed in your code.
|
|||||||
- HashSets/Maps (Linked & HashControl)
|
- HashSets/Maps (Linked & HashControl)
|
||||||
- TreeSets/Maps (RB & AVL)
|
- TreeSets/Maps (RB & AVL)
|
||||||
- EnumMaps
|
- EnumMaps
|
||||||
|
- ReferenceMaps (Weak Keys)
|
||||||
- Immutable Maps/Lists/Sets
|
- Immutable Maps/Lists/Sets
|
||||||
- ConcurrentHashMaps
|
- ConcurrentHashMaps
|
||||||
- Priority Queues
|
- Priority Queues
|
||||||
@@ -51,14 +52,14 @@ repositories {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.github.Speiger:Primitive-Collections:0.9.0'
|
implementation 'com.github.Speiger:Primitive-Collections:1.0.0'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Using Maven Central
|
Using Maven Central
|
||||||
```groovy
|
```groovy
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'io.github.speiger:Primitive-Collections:0.9.0'
|
implementation 'io.github.speiger:Primitive-Collections:1.0.0'
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user