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