public ArrayIntList(IntCollection that) {
   this(that.size());
   addAll(that);
 }