add information on how to get artifacts

This commit is contained in:
2018-09-13 17:53:25 +00:00
parent 7201dde072
commit 29e298dd35

View File

@@ -7,15 +7,28 @@ The lists support the following operations:
* add/remove elements via single and bulk operations * add/remove elements via single and bulk operations
* replace elements * replace elements
* sort and shuffle * sort and shuffle
>* the lists know whether or not they are sorted and can leverage that knowledge for searching (binary search), union and intersection * the lists know whether or not they are sorted and can leverage that knowledge for searching (binary search), union and intersection
* search for elements * search for elements
* union, intersection, retainIf, retainAll removeIf, removeAll * union, intersection, retainIf, retainAll removeIf, removeAll
* clear and trim are separate methods, so that the list can be re-used without having to reallocate memory * clear and trim are separate methods, so that the list can be re-used without having to re-allocate memory
* stream support * stream support
* the lists are serializable and cloneable * the lists are serializable and cloneable
* the list are **not** thread-safe * the lists are **not** thread-safe
#Examples # How to use
The library is still considered beta. There no pre-build artifacts on Maven Central or JCenter, but you can download them from repo.lucares.org.
```groovy
apply plugin: 'maven'
repositories {
maven { url 'https://repo.lucares.org/' }
}
dependencies {
compile 'org.lucares:primitiveCollections:0.1.20171228131833'
}
```
# Examples
```java ```java
import org.lucares.collections.IntList; import org.lucares.collections.IntList;