Primitive-Collections/README.md

23 lines
859 B
Markdown
Raw Normal View History

# Primitive-Collections (To be Renamed)
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-01-28 21:41:15 +01:00
Main Features:
ArraysList, HashSet/Map (Linked & HashControl), TreeSet/Map (RB & AVL), Priority Queue.
2021-01-28 21:39:58 +01:00
# Guide
The SourceCode can be already 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-01-28 21:41:15 +01:00
Current Problem:
EnumMaps use sun.misc package.
Some overhauls or missing implementations have to be added. (A couple passes)
But technically Lists/Sets/PriorityQueues are fully usable, Maps are untested and just recently added.
2021-01-28 21:39:58 +01:00
Documentation & Tests are going to be added very soon.