...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::yap::expression<expr_kind::terminal, hana::tuple< T >>
// In header: <boost/yap/expression.hpp> template<typename T> struct expression<expr_kind::terminal, hana::tuple< T >> { // types typedef hana::tuple< T > tuple_type; // construct/copy/destruct expression(); expression(T &&); expression(hana::tuple< T > const &); expression(hana::tuple< T > &&); // public member functions constexpr decltype(auto) value(); // public data members static const expr_kind kind; tuple_type elements; };
Terminal expression specialization of the reference expression template.
Note | |
---|---|
Due to a limitation of Doxygen, the return_type f (); However, there are actually three functions: return_type f () const &; return_type f () &; return_type f () &&;
|