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 -----------------------------