void add(List from, int startInclusive, int endExclusive) { for (int i = startInclusive; i < endExclusive; i++) { _add(from.item(i)); } }
void add(List other) { for (int i = 0; i < other.length(); i++) { _add(other.item(i)); } }