...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::proto::child_c — Return the N
th child of the specified
Proto expression.
// In header: <boost/proto/traits.hpp> template<long N, typename Expr> typename proto::result_of::child_c< Expr &, N >::type child_c(Expr & expr); template<long N, typename Expr> typename proto::result_of::child_c< Expr const &, N >::type child_c(Expr const & expr);
Return the N
th child of the specified Proto
expression. The child is returned by reference.
Requires: |
|
Returns: |
A reference to the |
Throws: |
Will not throw. |