Primitive-Collections/README.md

58 lines
2.1 KiB
Markdown
Raw Normal View History

# Primitive-Collections
2021-01-28 21:41:15 +01:00
This is a Simple Primitive Collections Library i started as a hobby Project.
It is based on Java's Collection Library and FastUtil.
But its focus is a different one.
2021-04-27 00:49:15 +02:00
## Main Features:
- ArraysList
- HashSet/Map (Linked & HashControl)
- TreeSet/Map (RB & AVL)
- Priority Queue.
- Streams
- SplitIterators
- Iterators
2021-04-27 00:49:15 +02:00
# Notes about Versions
Any 0.x.0 version (Minor) can be reason for massive changes including API.
To ensure that problems can be dealt with even if it is breaking the current API.
Any breaking changes will be Documented (once 1.0 is released)
2021-06-22 15:53:52 +02:00
# How to install
Using Gradle:
```gradle
repositories {
maven {
url = "https://maven.speiger.com/repository/main"
}
}
dependencies {
2021-06-24 17:21:26 +02:00
compile 'de.speiger:Primitive-Collections:0.3.1'
2021-06-22 15:53:52 +02:00
}
```
# Contributing
If you want to contribute.
This project is created using gradle and java and my Template Library only. Nothing extra.
If you setup gradle the library will be downloaded automatically.
Where is everything stored?
- Variables and ClassNames are define [here](https://github.com/Speiger/Primitive-Collections/blob/master/src/builder/java/speiger/src/builder/GlobalVariables.java)
- Templates are stored [here](https://github.com/Speiger/Primitive-Collections/tree/master/src/builder/resources/speiger/assets/collections/templates)
- Tests can be found [here](https://github.com/Speiger/Primitive-Collections/tree/master/src/test/java/speiger/src/collections)
Please if you want to contribute follow the [Rule-Sheet](https://github.com/Speiger/Primitive-Collections/blob/master/RuleSheet.md). It keeps everything in line.
2021-06-22 15:53:52 +02:00
# How to Build
The SourceCode can be generated via:
/gradlew.bat generateSource
to build the jar:
/gradlew.bat build
do not combine the commands because they can not be executed at the same time.
2021-01-28 21:39:58 +01:00
2021-04-27 00:49:15 +02:00
## Current Down Sides (Random order)
- Testing for Sub Maps/Sets/Lists are only in a very basic way tested
- Documentation is only present at the lowest level for most cases and needs a typo fixing.