blob: ee4816449d79cbbe9e7c5488e47916758e5197e6 [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 abstract E reduce(E combine(E value, E element))
* If it has only one element, that element is returned.
* @description Checks that if there is only one element in the given iterable,
* it is returned.
* @author iarkh@unipro.ru
*/
import "dart:collection";
import "../../../Utils/expect.dart";
class MyIterable extends Object with IterableMixin {
List _content;
MyIterable(List list): _content = list;
Iterator get iterator {
return _content.iterator;
}
}
check(List list, combine, num expected) {
IterableMixin iterable = new MyIterable(list);
num actual = iterable.reduce(combine);
Expect.equals(expected, actual);
}
main() {
check([1], (value, element) => value + element, 1);
check([8], (value, element) => value * element, 8);
check([-3], (value, element) => value * element, -3);
}