Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions immer/algorithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,9 @@ bool all_of(Iter first, Iter last, Pred p)
* @tparam RemovedFn Unary function that is called whenever a removed element is
* found. It is called with the removed element as argument.
*
* @tparam ChangedFn Unary function that is called whenever a changed element is
* found. It is called with the changed element as argument.
* @tparam ChangedFn Binary function that is called whenever a changed element is
* found. It is called with the old value as the first argument and the
* new value as the second.
*/
template <class AddedFn, class RemovedFn, class ChangedFn>
struct differ
Expand Down
Loading