Boost C++ 库

...是世界上最受推崇和专业设计的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ 编码标准

PrevUpHomeNext

结构体模板 listN

boost::proto::listN — proto::list1<>, proto::list2<> 等,是类型序列,用作 proto::expr<>proto::basic_expr<> 类模板的第二个参数。

概要

// In header: <boost/proto/args.hpp>

template<typename... Arg> 
struct listN {
  // types
  typedef ArgM childM;  // For each M in [0,N)

  // public data members
  static const long arity;  // = N;
};

描述

类型序列,用作 proto::expr<>proto::basic_expr<> 类模板的第二个参数。序列中的类型对应于表达式树中节点的子节点。没有字面名为“listN”的类型;相反,有一组名为 proto::list1<>, proto::list2<> 等的类型。


PrevUpHomeNext