From 6a346b5127d88ae3dd316ef65a6c41972ef03968 Mon Sep 17 00:00:00 2001 From: Alex Arslan Date: Tue, 13 Dec 2016 17:48:57 -0800 Subject: [PATCH] Add NEWS item [ci skip] --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 0b16422ee98c45..2e960c6adead55 100644 --- a/NEWS.md +++ b/NEWS.md @@ -74,6 +74,10 @@ Library improvements * New `titlecase` function, which capitalizes the first character of each word within a string ([#19469]). + * `any` and `all` now always short-circuit, and `mapreduce` never short-circuits ([#19543]). + That is, not every member of the input iterable will be visited if a `true` (in the case of `any`) or + `false` (in the case of `all`) value is found, and `mapreduce` will visit all members of the iterable. + Compiler/Runtime improvements -----------------------------