blob: d2c2ff214c5588d7f1d4acf4c879b1d5281c4786 [file] [log] [blame]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion
/// void setRange(
/// int start,
/// int end,
/// Iterable<E> iterable, [
/// int skipCount = 0
/// ])
///
/// @description Checks that it is not an error if run-time type of the
/// `iterable` elements is an integer
/// @author sgrekhov22@gmail.com
import "dart:typed_data";
import "../../../Utils/expect.dart";
void main() {
Uint16List uint16List = Uint16List.fromList([0xFFFF, 1]);
Uint32List uint32List = Uint32List.fromList([0xFFFFFFFF, 2]);
Int32List int32List = Int32List(2);
int32List.setRange(0, 2, uint16List);
Expect.listEquals([65535, 1], int32List);
int32List.setRange(0, 2, uint32List);
Expect.listEquals([-1, 2], int32List);
}