Skip to content

Commit

Permalink
Mention reduce as well in NEWS
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
ararslan authored Dec 14, 2016
1 parent 6a346b5 commit cb2532a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +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]).
* `any` and `all` now always short-circuit, and `mapreduce` and `reduce` never short-circuit ([#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.
`false` (in the case of `all`) value is found, whereas `mapreduce` and `reduce` will visit all members
of the iterable.

Compiler/Runtime improvements
-----------------------------
Expand Down

0 comments on commit cb2532a

Please sign in to comment.