Package net.sf.zig_project.gpl.common.arrays

Interface Summary
ArraySizeSelector An ArraySizeSelector is a modular interface that recommends how large of a new array should be allocated for classes that need to maintain a dynamic array.
 

Class Summary
DirectArraySizeSelector The Direct Array Size Selector always recommends array growth by a single, fixed, size.
ExponentialRatioArraySizeSelector The Exponential Array Sizer recommends an array size.
IntList An int list provides a list of int types, maintained in an array.
LinearArraySizeSelector A LinearArraySizeSelector recommends that an array be resized based on it's current size, multipled by a constant scalar value.
StuntedArraySizeSelector A StuntedArraySizeSelector prohibits the growth of an array beyond it's origional size.