Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Struct template result<This(Seq, T)>

boost::proto::functional::push_front::result<This(Seq, T)>

Synopsis

// In header: <boost/proto/functional/fusion/push_front.hpp>


template<typename This, typename Seq, typename T> 
struct result<This(Seq, T)> :  fusion::result_of::push_front<
      typename boost::add_const<typename boost::remove_reference<Seq>::type>::type
    , typename boost::remove_const<typename boost::remove_reference<T>::type>::type
  >
{
};

PrevUpHomeNext