template_arity.hpp
来自「正则表达式源代码」· HPP 代码 · 共 34 行
HPP
34 行
// preprocessed version of 'boost/mpl/aux_/template_arity.hpp' header// see the original for copyright informationnamespace boost { namespace mpl { namespace aux {template< bool >struct template_arity_impl{ template< typename F > struct result_ { static int const value = -1; };};template<>struct template_arity_impl<true>{ template< typename F > struct result_ { enum { value = F::arity }; };};template< typename F >struct template_arity : template_arity_impl< ::boost::mpl::aux::has_rebind<F>::value > ::template result_<F>{};}}} // namespace boost::mpl::aux
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?