README.md edited online with Bitbucket

This commit is contained in:
2017-02-04 08:15:29 +00:00
parent 9a365834b6
commit a535761b46

View File

@@ -1,3 +1,3 @@
Java collections for primitives (currently only int) release into the public domain. See [unlicense.org](http://unlicense.org/) for more information
Java collections for primitives (currently only int) released under [MIT](https://opensource.org/licenses/MIT) license.
*IntList* is an implementation of a list to store primitive integers. You can add, insert, replace and remove elements in the list. The ints are stored in an int array and the class takes care of growing the array as needed. You can trim the list to reduce the memory overhead.