blob: dc93ad72f5727d51c9d41339b864846188ef3f71 [file] [log] [blame]
// Copyright (c) 2017, 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 Map<int, E> asMap()
/// Returns an unmodifiable Map view of this.
/// The map uses the indices of this list as keys and the corresponding objects
/// as values.
/// @description Checks that Map view is created and indices of this list is
/// used as keys of returned map.
/// @author ngl@unipro.ru
import "dart:typed_data";
import "../../../Utils/expect.dart";
Float64x2 f64x2(v) => new Float64x2.splat(v);
void check(List<Float64x2> list) {
var l = new Float64x2List.fromList(list);
var m = l.asMap();
Expect.isTrue(m is Map);
for (int i = 0; i < list.length; ++i) {
Expect.equals(l[i].x, m[i]?.x);
Expect.equals(l[i].y, m[i]?.y);
}
}
main() {
check([]);
check([f64x2(1.0)]);
check([f64x2(1.0), f64x2(1.0)]);
check([
f64x2(5.0), f64x2(6.0), f64x2(7.0), f64x2(8.0), f64x2(9.0),
f64x2(10.0), f64x2(11.0), f64x2(12.0), f64x2(13.0), f64x2(14.0),
f64x2(15.0), f64x2(16.0), f64x2(17.0)
]);
}