org.antlr.misc |
|
Java Source File Name | Type | Comment |
Barrier.java | Class | A very simple barrier wait. |
BitSet.java | Class | A BitSet to replace java.util.BitSet.
Primary differences are that most set operators return new sets
as opposed to oring and anding "in place". |
IntArrayList.java | Class | An ArrayList based upon int members. |
Interval.java | Class | |
IntervalSet.java | Class | A set of integers that relies on ranges being common to do
"run-length-encoded" like compression (if you view an IntSet like
a BitSet with runs of 0s and 1s). |
IntSet.java | Interface | A generic set of ints that has an efficient implementation, BitSet,
which is a compressed bitset and is useful for ints that
are small, for example less than 500 or so, and w/o many ranges. |
MutableInteger.java | Class | Java won't let you modify an Integer; not sure how that's more
efficient, but...here's one that let's you modify it.
Frightening I have to implement this myself. |
OrderedHashSet.java | Class | A HashMap that remembers the order that the elements were added. |
Utils.java | Class | |