diff --git a/doc/html/mp11.html b/doc/html/mp11.html index a6e817b..db32cd8 100644 --- a/doc/html/mp11.html +++ b/doc/html/mp11.html @@ -68,6 +68,8 @@
mp_push_back<L, T...>
mp_rename<L,
Y>
mp_apply<F,
+ L>
mp_append<L...>
mp_replace_front<L, T>
mp_replace_first<L, T>
template<template<class...> class F, class L> using mp_apply = mp_rename<L, F>; ++
+ mp_apply<F, L>
applies the function F
to the contents of the list L
, that is, mp_rename<F, L<T...>>
+ is an alias for F<T...>
.
+ (mp_apply
is the same as
+ mp_rename
with the arguments
+ reversed.)
+
template<class... L> using mp_append = /*...*/; @@ -1688,7 +1705,7 @@
Last revised: March 20, 2017 at 14:09:13 GMT |
+Last revised: March 24, 2017 at 12:24:11 GMT |