blob: 3e5baabdc97503af2afb152ae4018972c39d959d [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 Iterable<T> expand(Iterable f(E element))
/// Expand each element of this Iterable into zero or more elements.
/// The resulting Iterable will run through the elements returned by f for each
/// element of this, in iteration order.
/// @description Checks that the returned [Iterable] contains correct elements
/// and has the correct length.
/// @author msyabro
import "dart:typed_data";
import "../../../Utils/expect.dart";
check(List<double> list) {
var l = new Float32List.fromList(list);
var res = l.expand((element) => [element * 2]);
Expect.equals(list.length, res.length);
for (int i = 0; i < list.length; ++i) {
Expect.equals(list[i] * 2, res.elementAt(i));
}
res = l.expand((element) => [element, element + 1]);
Expect.equals(list.length * 2, res.length);
for (int i = 0; i < list.length; ++i) {
Expect.equals(list[i], res.elementAt(2 * i));
Expect.equals(list[i] + 1, res.elementAt(2 * i + 1));
}
res = l.expand((element) => [] );
Expect.equals(0, res.length);
}
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]);
}