blob: 6ad5b9015dc069595f57fceb5299b5cd94841e61 [file] [log] [blame]
/*
* Copyright (c) 2013, 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])
* Copies the elements of [iterable], skipping the [skipCount] first elements,
* into the range [start] to [end] exclusive of [this].
* @description Checks that the correct range is set with correct elements.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
main() {
var l = new Float32List.fromList([0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0]);
l.setRange(1, 2, [1.0, 2.0, 3.0], 2);
Expect.listEquals([0.0,3.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0], l);
l.setRange(3, 5, [1.0, 2.0, 3.0], 0);
Expect.listEquals([0.0,3.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0], l);
l.setRange(0, 10, [0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0], 1);
Expect.listEquals([1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0], l);
}