645f3acca7
Closes #41386 Change-Id: I1a5a4cdc35cef37c7a8ba6a6aecb99457789bcdc Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/144940 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
12 lines
366 B
Dart
12 lines
366 B
Dart
// Copyright (c) 2020, 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.
|
|
|
|
bool Function(T) predicate<T>(bool Function(T) fn) => (T val) => fn(val);
|
|
|
|
void test() {
|
|
print(predicate((v) => v % 2 == 1)(3));
|
|
}
|
|
|
|
void main() {}
|