blob: e8450d8bb9da95bfdeee2e743b75b450d10989bb [file] [log] [blame]
/*
* Copyright (c) 2011, 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 firstWhere(bool test(E value), {E orElse()})
* Returns the first element that satisfies the given predicate f.
* @description Checks that the first element that satisfies the given predicate f
* is returned.
* @author kaigorodov
*/
import "../../../Utils/expect.dart";
check(List a, test(value), int expected) {
int actual=a.firstWhere(test);
Expect.equals(expected, actual);
}
main() {
check([1,2,-3,4], (value)=>value>1, 2);
check(const[1,2,-5,-6], (value)=>value<0, -5);
}