ab7d554d528b5118e30eb6be76606151624e2e91
The old implementation grew the array by 100% with each resize. The new implementation reduces the memory usage for, especially for large lists. The new algorithm is overflow-concious.
Java collections for primitives (currently only int) released under 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.
Languages
Java
99.9%
Shell
0.1%