| java.lang.Object org.skunk.util.GappedIntArray
GappedIntArray | public class GappedIntArray (Code) | | a container for ints that keeps a gap in the array
|
DEFAULT_GAP_SIZE | static int DEFAULT_GAP_SIZE(Code) | | |
GappedIntArray | public GappedIntArray()(Code) | | |
GappedIntArray | public GappedIntArray(int[] initialContent)(Code) | | |
GappedIntArray | public GappedIntArray(int gapSize, int gapOffset, int[] initialContent)(Code) | | |
append | public synchronized void append(int[] someInts)(Code) | | |
getCurrentGapSize | public int getCurrentGapSize()(Code) | | |
getGapOffset | public int getGapOffset()(Code) | | |
insertAt | public synchronized void insertAt(int offset, int[] someInts)(Code) | | |
length | public int length()(Code) | | |
remove | public synchronized void remove(int offset, int len)(Code) | | |
set | public synchronized void set(int offset, int anInt)(Code) | | |
toIntArray | public int[] toIntArray()(Code) | | |
|
|