
19 Aug
2010
19 Aug
'10
6:19 p.m.
Hi there, Using mpl::remove, et al. I can eliminate types from an mpl::list. However, it appears that the result is not an actual mpl::list, but some sort of indexed, cons-like structure composed of mpl::l_item types. Is there a way to recreate an mpl::list proper using these l_item's? E.g. typedef mpl::list<foo, bar, qux> L; typedef mpl::remove<L, bar>::type R; typedef mpl::???<R>::type => mpl::list<foo, qux>; Thanks!