Home | History | Annotate | Download | only in util

Lines Matching refs:IntList

24 public final class IntList extends MutabilityControl {
26 public static final IntList EMPTY = new IntList(0);
46 public static IntList makeImmutable(int value) {
47 IntList result = new IntList(1);
61 public static IntList makeImmutable(int value0, int value1) {
62 IntList result = new IntList(2);
74 public IntList() {
83 public IntList(int initialCapacity) {
116 if (! (other instanceof IntList)) {
120 IntList otherList = (IntList) other;
343 public IntList mutableCopy() {
345 IntList result = new IntList(sz);