sublist 抽象方法

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

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

新列表是一个 Float64x2List,包含与这个列表中相同的顺序的元素,这些元素在这个列表中的位置大于或等于 start 且小于 end

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

如果省略了 end,它将默认为这个列表的 长度

print(numbers.sublist(3)); // [Float64x2(3, 4), Float64x2(4, 5)]

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

实现

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