Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template child_c

boost::proto::functional::child_c — A callable PolymorphicFunctionObject that is equivalent to the proto::child_c() function.

Synopsis

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

template< N> 
struct child_c :  proto::callable {
  // member classes/structs/unions
  template<typename This, typename Expr> 
  struct result<> :  proto::result_of::child_c< Expr, N > {
  };

  // public member functions
  template<typename Expr> 
    proto::result_of::child_c<  
    () ;
  template<typename Expr> 
    proto::result_of::child_c<  
    () ;
};

Description

child_c public member functions

  1. template<typename Expr> 
      proto::result_of::child_c<  
      ( expr) ;

    Return the Nth child of the given expression.

    Parameters:

    expr

    The expression node.

    Requires:

    proto::is_expr<Expr>::value is true

    N < Expr::proto_arity::value

    Returns:

    proto::child_c<N>(expr)

    Throws:

    Will not throw.
  2. template<typename Expr> 
      proto::result_of::child_c<  
      ( expr) ;

    This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.


PrevUpHomeNext