blob: 8ee42e0e803368dd3796dc72a1b6c8816d6d44bb [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 E singleWhere(bool test(E element))
* Returns the single element that satisfies [test].
* @description Checks that the single element satisfying [test]
* is returned.
* @author msyabro
*/
import "../../../Utils/expect.dart";
main() {
var runes = new Runes('aaaacaaBa');
var res = runes.singleWhere( (e) => e > 0x61 );
Expect.equals(0x63, res);
res = runes.singleWhere( (e) => e < 0x61 );
Expect.equals(0x42, res);
}