blob: 9fbec90a6a274e3f00c06fb64c6353d23dd9748a [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 Map<int, E> asMap()
* Returns an unmodifiable [Map] view of this.
* It has the indices of this list as keys, and the corresponding elements
* as values.
* @description Checks that the returned map has the indices of this list as keys
* and corresponding elements as values.
* @author msyabro
*/
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(list) {
var l = new Float64List.fromList(list);
var m = l.asMap();
for(int key = 0; key < list.length; ++key) {
Expect.isTrue(m.containsKey(key));
Expect.identical(l[key], m[key]);
}
}
main() {
check([]);
check([1.0]);
check([1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0]);
}