⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 arg.hpp

📁 正则表达式源代码
💻 HPP
字号:
// preprocessed version of 'boost/mpl/arg.hpp' header// see the original for copyright informationnamespace boost {namespace mpl {template<> struct arg<-1>{    static int const value = -1;    BOOST_MPL_AUX_ARG_TYPEDEF(void_, tag)    template<          typename U1, typename U2, typename U3, typename U4, typename U5        >    struct apply    {        typedef U1 type;    };};template<> struct arg<1>{    static int const value = 1;    typedef arg<2> next;    BOOST_MPL_AUX_ARG_TYPEDEF(void_, tag)    template<          typename U1, typename U2, typename U3, typename U4, typename U5        >    struct apply    {        typedef U1 type;    };};template<> struct arg<2>{    static int const value = 2;    typedef arg<3> next;    BOOST_MPL_AUX_ARG_TYPEDEF(void_, tag)    template<          typename U1, typename U2, typename U3, typename U4, typename U5        >    struct apply    {        typedef U2 type;    };};template<> struct arg<3>{    static int const value = 3;    typedef arg<4> next;    BOOST_MPL_AUX_ARG_TYPEDEF(void_, tag)    template<          typename U1, typename U2, typename U3, typename U4, typename U5        >    struct apply    {        typedef U3 type;    };};template<> struct arg<4>{    static int const value = 4;    typedef arg<5> next;    BOOST_MPL_AUX_ARG_TYPEDEF(void_, tag)    template<          typename U1, typename U2, typename U3, typename U4, typename U5        >    struct apply    {        typedef U4 type;    };};template<> struct arg<5>{    static int const value = 5;    typedef arg<6> next;    BOOST_MPL_AUX_ARG_TYPEDEF(void_, tag)    template<          typename U1, typename U2, typename U3, typename U4, typename U5        >    struct apply    {        typedef U5 type;    };};BOOST_MPL_AUX_NONTYPE_ARITY_SPEC(1, int, arg)} // namespace mpl} // namespace boost

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -