sublist 抽象方法

Int32x4List sublist(
  1. int start,
  2. [int? end]
)
override

返回一个新的列表,包含从 startend 之间的元素。

新列表是一个 Int32x4list,包含在此列表中位置大于或等于 start 且小于 end 的元素,顺序与它们在此列表中的顺序相同。

var numbers = Int32x4list.fromList([0, 1, 2, 3, 4]);
print(numbers.sublist(1, 3)); // [1, 2]
print(numbers.sublist(1, 3).runtimeType); // Int32x4list

如果省略了 end,则默认为此列表的 长度

print(numbers.sublist(1)); // [1, 2, 3, 4]

startend 的位置必须满足关系 0 ≤ startendthis.length。如果 end 等于 start,则返回的列表为空。

实现

Int32x4List sublist(int start, [int? end]);