diff --git a/doc/html/mp11.html b/doc/html/mp11.html index cd95a45..5f9f706 100644 --- a/doc/html/mp11.html +++ b/doc/html/mp11.html @@ -136,6 +136,7 @@
mp_all_of<L, P>
mp_none_of<L, P>
mp_any_of<L, P>
mp_for_each<L>(f)
<boost/mp11/set.hpp>
L
, mp_false
otherwise. When L
is empty, the result is mp_false
.
+template<class L, class F> constexpr F mp_for_each(F&& f); ++
+ mp_for_each<L>(f)
calls
+ f
with mp_identity<T>()
for each element T
+ of the list L
, in order.
+
+ Returns std::forward<F>(f)
.
+
Last revised: May 12, 2017 at 16:48:16 GMT |
+Last revised: May 12, 2017 at 21:20:08 GMT |