setRange 方法
override
将 iterable 中的一些元素写入此列表的某个范围内。
从 iterable 中复制对象,跳过 skipCount
个对象后,将对象复制到从 start
(包含)到 end
(不包含)的此列表范围内。
final list1 = <int>[1, 2, 3, 4];
final list2 = <int>[5, 6, 7, 8, 9];
// Copies the 4th and 5th items in list2 as the 2nd and 3rd items
// of list1.
const skipCount = 3;
list1.setRange(1, 3, list2, skipCount);
print(list1); // [1, 8, 9, 4]
提供的范围(由 start
和 end
给出)必须有效。如果 0 ≤ start
≤ end
≤ length,则从 start
到 end
的范围是有效的。一个空范围(end == start
)也是有效的。
iterable 必须有足够多的对象来填充在跳过 skipCount
个对象后从 start
到 end
的范围。
如果 iterable 是此列表,则该操作正确地复制了从 skipCount
到 skipCount + (end - start)
的原始范围元素到从 start
到 end
的范围,即使两个范围重叠。
如果 iterable 以某种方式依赖于此列表,则不提供任何保证。
实现
void setRange(int start, int end, Iterable<E> iterable, [int skipCount = 0]) {
throw new UnsupportedError("Cannot setRange on immutable List.");
}