blob: b714dec2f279c9de17a8e4b6d9953cd8481c3e60 [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 Future<T> lastWhere (bool test(T element),
/// {@deprecated dynamic defaultValue(), T orElse()})
///
/// Finds the last element in this stream matching test.
///
/// If this stream emits an error, the returned future is completed with that
/// error, and processing stops.
///
/// Otherwise as firstWhere, except that the last matching element is found
/// instead of the first. That means that a non-error result cannot be provided
/// before this stream is done.
///
/// The defaultValue parameter is deprecated, and orElse should be used instead.
/// @description Checks that if this stream ends without finding a match and an
/// [orElse] function is provided, the result of calling [orElse] becomes the
/// value of the future.
/// @author kaigorodov
import "dart:async";
import "../../../Utils/expect.dart";
import "IsolateStream.dart" as IsolateStream;
check(Iterable data, bool test(var element), int expected) {
Stream s = IsolateStream.fromIterable(data);
asyncStart();
Future f = s.lastWhere(test, orElse: () => expected);
f.then((var actual) {
Expect.equals(expected, actual);
asyncEnd();
});
}
main() {
check([], (var element) => true, 1);
check([1, 2, 3], (var element) => element == null, 0);
check(new Iterable.generate(0, (int index) => index), (var element) => false,
0);
check(
new Iterable.generate(0, (int index) => index), (var element) => true, 0);
check(new Iterable.generate(10, (int index) => index), (var element) => false,
22);
check(new Iterable.generate(10, (int index) => index * 5),
(var element) => element < 0, 33);
}