Returns a new list containing the elements between start
and end
.
The new list is an Int32x4list
containing the elements of this list at positions greater than or equal to start
and less than end
in the same order as they occur in this list.
var numbers = Int32x4list.fromList([0, 1, 2, 3, 4]); print(numbers.sublist(1, 3)); // [1, 2] print(numbers.sublist(1, 3).runtimeType); // Int32x4list
If end
is omitted, it defaults to the length of this list.
print(numbers.sublist(1)); // [1, 2, 3, 4]
The start
and end
positions must satisfy the relations 0 ≤ start
≤ end
≤ this.length
If end
is equal to start
, then the returned list is empty.
Int32x4List sublist(int start, [int end]);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.5.0/dart-typed_data/Int32x4List/sublist.html