setAll抽象方法
使用iterable
中的对象覆盖元素。
iterable
的元素将写入此列表中,从位置index
开始。此操作不会增加列表的长度。
index
必须是非负数且不大于长度。
iterable
包含的元素数不得多于从index
到长度可以容纳的元素数。
如果iterable
基于此列表,其值可能在setAll
操作期间改变。
final list = <String>['a', 'b', 'c', 'd'];
list.setAll(1, ['bee', 'sea']);
print(list); // [a, bee, sea, d]
实现
void setAll(int index, Iterable<E> iterable);