From 891b4ddd88f606896b2d38768eb9aad4683d7fea Mon Sep 17 00:00:00 2001 From: Bernhard Manfred Gruber Date: Tue, 14 Sep 2021 21:30:06 +0200 Subject: [PATCH] document how to convert an MPL sequence into an mp_list --- doc/mp11/mpl.adoc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/mp11/mpl.adoc b/doc/mp11/mpl.adoc index bb8cb43..1d952e1 100644 --- a/doc/mp11/mpl.adoc +++ b/doc/mp11/mpl.adoc @@ -24,3 +24,8 @@ including ``, and for `std::tuple` by including ``. This may be required because some libraries, such as Boost.Fusion, contain their own MPL support for `std::tuple`, which conflicts with Mp11's one. + +.Converting an existing MPL Sequence into an `mp_list`: +``` +using L = mpl::copy>>::type; +```