Boost C++ 库

...世界上最受推崇和设计精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu,《C++ 编码规范

结构体模板 impl - Boost C++ 函数库
PrevUpHomeNext

结构体模板 impl

boost::proto::switch_::impl

提要

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


template<typename Expr, typename State, typename Data> 
struct impl :  
    Cases::template case_<
      typename when<_, Transform>::template impl<Expr, State, Data>::result_type 
    >::template impl<Expr, State, Data>
{
};

PrevUpHomeNext