- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
如果我有类型,T
,看起来像 Foo<mpl::_1>
,我能做到mpl::apply<T, int>::type
得到Foo<int>
.
但是如果T
是一个完整的类型,比如 Foo<int>
, 然后 mpl::apply<T, int>::type
不会编译。
我想编写一个元函数,如果可能的话将应用一个类型,否则返回该类型。所以像这样:
template <typename Partial, typename T>
struct maybe_apply
: eval_if_c<??????,
mpl::apply<Partial, T>,
mpl::identity<Partial>>
{ };
我可以在 ???s 中放什么,这样它就能达到我想要的效果?
最佳答案
免责声明:我远不是 MPL 方面的专家,所以我不能保证这是解决这个问题的最佳方法(或者即使它是正确的,它至少看起来是有效的)。
根据文档,mpl::apply
的第一个参数/参数需要是 Lambda 表达式,并且可以是元函数类或占位符表达式。快速的谷歌搜索让我找到了 this post .根据该帖子,mpl::is_lambda_expression
允许您确定类型是否为占位符表达式。在 Boost.TTI(从 1.54 版开始就在 boost 中)你可以找到一个元函数来做你想要的。这个元函数是 boost::tti::detail::is_lambda_expression
,可以在 boost/tti/detail/dlambda.hpp
中找到。在下面的示例中,我使用了与 TTI 用于查找类型是否为元函数类的宏完全相同的宏。
#include <iostream>
#include <typeinfo>
#include <boost/utility.hpp>
#include <boost/mpl/apply.hpp>
#include <boost/mpl/eval_if.hpp>
#include <boost/mpl/identity.hpp>
#include <boost/mpl/plus.hpp>
namespace mpl=boost::mpl;
/* //This is another way to do it
template <typename T, typename Enable=void>
struct is_apply_able : mpl::false_
{};
template <typename T>
struct is_apply_able<T,typename boost::enable_if<mpl::is_lambda_expression<T> >::type> : mpl::true_
{};
BOOST_MPL_HAS_XXX_TEMPLATE_NAMED_DEF(is_metafunction_class, apply, false)
template <typename T>
struct is_apply_able<T,typename boost::enable_if<is_metafunction_class<T> >::type> : mpl::true_
{};*/
BOOST_MPL_HAS_XXX_TEMPLATE_NAMED_DEF(is_metafunction_class, apply, false)
template <typename T>
struct is_apply_able : mpl::or_<is_metafunction_class<T>,mpl::is_lambda_expression<T> >
{};
struct plus_two
{
template <typename Number>
struct apply
{
typedef typename mpl::plus<Number,mpl::int_<2> >::type type;
};
};
template <typename T>
struct Foo
{};
template <typename Partial, typename T>
struct maybe_apply
: mpl::eval_if<is_apply_able<Partial>,
mpl::apply<Partial, T>,
mpl::identity<Partial> >
{ };
int main()
{
std::cout << typeid(maybe_apply<Foo<mpl::_1>,int>::type).name() << std::endl;
std::cout << typeid(maybe_apply<plus_two,mpl::int_<1> >::type).name() << std::endl;
std::cout << typeid(maybe_apply<Foo<float>,int>::type).name() << std::endl;
}
关于c++ - 如何检查类型是否为 mpl::apply-able?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18541644/
下面的代码再现了一个我真的不理解 boost MPL 库的行为: #include #include #include using namespace boost; int main() {
我正在尝试使用 boost.mpl 编写一个小型元程序,该程序使用两个 channel 映射将“命名 channel ”与音频格式相匹配。 名称也是一个整数(枚举)。我试图在运行时实现的一个简单示例可
我正在尝试在 for_each 中使用 mpl_list #include #include #include #include #include #include #include #
我正在尝试对 mpl::string 应用转换,但无法对其进行编译。我正在使用 MS VC++2010 和 Boost 1.43.0。代码: #include #include #include
我正在尝试运行几年前编写的代码,该代码使用 matplotlib 中的 mpl。以前运行得很好,但现在突然抛出错误: from matplotlib import mpl ImportError: c
Boost MPL 文档指出 boost::map::equal "如果两个序列 Seq1 和 Seq2比较 _element_ _element_ 时是相同的。 但似乎没有检查关联序列映射是否相等元
假设我有一个 boost::mpl::vector “myvec”,例如这样定义: using myvec = boost::mpl::vector; 现在我想定义另一种类型 myvecex,它将每个
下面的代码尝试测试 boost::mpl::or_ 和 boost::mpl::and_ 的短路行为: #include #include #include #include #include
假设我有这些类型: template class Storage > struct AbstractFactoryUnit { virtual ~AbstractFactoryUnit()
我有一个类型列表定义为: typedef boost::mpl::list OriginalList; 我想创建不包含任何水果的第二个列表,即从第一个列表形成的结果列表将包含单一类型的 Brick。
我有以下内容: class Message { public: bool process() { return doProcess(); } protected
我试图在编译时使用 boost-mpl 连接字符串,但从 gcc 中收到错误。这是示例 - using namespace boost; using namespace std; template s
天哪,在使用 mpl 库时,弄清楚语法是一个碰运气的经历 (previous question)。比较两个 mpl 迭代器的正确语法是什么 - 即 it != v.end() 测试? template
我目前正致力于在我的应用程序中实现“捐赠”选项,并决定使用 PayPal(请参阅:Donate via in-app billing) 阅读文档等后,决定使用 PayPal 移动支付库 (MPL)。一
我想使用编译时 (MPL) for_each 检查给定的输入变量是否在 MPL 数组中,并再次从 MPL 数组中获取和获取输出变量。我正在尝试使用具有 2 个参数的函数对象,即 MPL 类型和输入。
我知道以下代码不起作用,因为 i 是运行时参数而不是编译时参数。但我想知道,是否有办法实现同样的目标。我有一个类列表,我需要调用其中每个类的模板函数。 void GucTable::refreshSe
我正在浏览 tutorial关于生成式编程,我偶然发现了MPL-value idiom: template class A { A(); public: static const A
我有元函数 FibIter。它计算与斐波那契数列中的数字(参数 Iter)对应的斐波那契数。然后我使用 mpl::transform 创建具有从 0 到 N 的斐波那契数列的 mpl::vector。
我试图用一些容器将每个元素包装在 mpl::set 中,例如 std::vector,尽管实际类型并不重要.我该怎么做?基本上我想从这里开始 using mySet = mpl::set; 对此 us
我有一个像这样的 boost::mpl 序列: typedef boost::mpl::vector TTypes; 我有一个特定用途的容器类,我想从我的 dll 中导出它: template cla
我是一名优秀的程序员,十分优秀!