...世界上最受推崇和设计精良的 C++ 库项目之一。 — Herb Sutter 和 Andrei Alexandrescu,《C++ 编码规范
...世界上最受推崇和设计精良的 C++ 库项目之一。
boost::proto::result_of::left — 一个元函数,返回二元 Proto 表达式左子节点的类型。
// In header: <boost/proto/traits.hpp> template<typename Expr> struct left : proto::result_of::child_c< Expr, 0 > { };
proto::result_of::left<Expr> 等价于 proto::result_of::child_c<Expr, 0>。
proto::result_of::left<Expr>
proto::result_of::child_c<Expr, 0>