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

📄 bind.hpp

📁 正则表达式源代码
💻 HPP
字号:
// preprocessed version of 'boost/mpl/bind.hpp' header// see the original for copyright informationnamespace boost {namespace mpl {namespace aux {template< bool >struct resolve_arg_impl{    template<          typename T, typename U1, typename U2, typename U3        , typename U4, typename U5        >    struct result_    {        typedef T type;    };};template<> struct resolve_arg_impl<true>{    template<          typename T, typename U1, typename U2, typename U3        , typename U4, typename U5        >    struct result_    {        typedef typename T::template apply< U1,U2,U3,U4,U5 >::type type;    };};template< typename T > struct is_bind_template;template<       typename T, typename U1, typename U2, typename U3, typename U4    , typename U5    >struct resolve_bind_arg    : resolve_arg_impl< is_bind_template<T >::value >            ::template result_< T,U1,U2,U3,U4,U5 >{};template< typename T > struct replace_unnamed_arg_impl{    template< typename Arg > struct result_    {        typedef Arg next_arg;        typedef T type;    };};template<> struct replace_unnamed_arg_impl< arg<-1> >{    template< typename Arg > struct result_    {        typedef typename Arg::next next_arg;        typedef Arg type;    };};template< typename T, typename Arg > struct replace_unnamed_arg    : replace_unnamed_arg_impl<T>::template result_<Arg>{};} // namespace auxtemplate<      typename F, typename T1 = void_, typename T2 = void_    , typename T3 = void_, typename T4 = void_, typename T5 = void_    >struct bind;template< typename F, typename T > struct bind1st;template< typename F, typename T > struct bind2nd;namespace aux {template< int arity_ > struct bind_impl_chooser;aux::no_tag is_bind_helper(...);template< typename T > aux::no_tag is_bind_helper(protect<T>*);template<      typename F, typename T1, typename T2, typename T3, typename T4    , typename T5    >aux::yes_tag is_bind_helper(bind< F,T1,T2,T3,T4,T5 >*);template< int N >aux::yes_tag is_bind_helper(arg<N>*);template< typename F, typename T > aux::yes_tag is_bind_helper(bind1st< F,T >*);template< typename F, typename T > aux::yes_tag is_bind_helper(bind2nd< F,T >*);template< bool is_ref_ = true >struct is_bind_template_impl{    template< typename T > struct result_    {        static bool const value = false;    };};template<>struct is_bind_template_impl<false>{    template< typename T > struct result_    {        static bool const value =             sizeof(aux::is_bind_helper(static_cast<T*>(0))) ==             sizeof(aux::yes_tag)            ;    };};template< typename T > struct is_bind_template    : is_bind_template_impl< ::boost::detail::is_reference_impl<T>::value >        ::template result_<T>{};} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(      6    , bind    )BOOST_MPL_AUX_ARITY_SPEC(2, bind1st)BOOST_MPL_AUX_ARITY_SPEC(2, bind2nd)template<      typename F    >struct bind0{    template<          typename U1 = void_, typename U2 = void_, typename U3 = void_        , typename U4 = void_, typename U5 = void_        >    struct apply    {     private:        typedef aux::replace_unnamed_arg< F, mpl::arg< 1> > r0;        typedef typename r0::type a0;        typedef typename r0::next_arg n1;        typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;     public:        typedef typename f_::type type;    };};namespace aux {template<      typename F    >aux::yes_tagis_bind_helper(bind0<F>*);} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(1, bind0)namespace aux {template<>struct bind_impl_chooser<0>{    template<          typename F, typename T1, typename T2, typename T3, typename T4        , typename T5        >    struct result_    {        typedef bind0<F> type;    };};} // namespace auxtemplate<      typename F, typename T1    >struct bind1{    template<          typename U1 = void_, typename U2 = void_, typename U3 = void_        , typename U4 = void_, typename U5 = void_        >    struct apply    {     private:        typedef aux::replace_unnamed_arg< F, mpl::arg< 1> > r0;        typedef typename r0::type a0;        typedef typename r0::next_arg n1;        typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;        typedef aux::replace_unnamed_arg< T1,n1 > r1;        typedef typename r1::type a1;        typedef typename r1::next_arg n2;        typedef typename aux::resolve_bind_arg< a1,U1,U2,U3,U4,U5 >::type t1;     public:        typedef typename f_::template apply<t1>::type type;    };};namespace aux {template<      typename F, typename T1    >aux::yes_tagis_bind_helper(bind1< F,T1 >*);} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(2, bind1)namespace aux {template<>struct bind_impl_chooser<1>{    template<          typename F, typename T1, typename T2, typename T3, typename T4        , typename T5        >    struct result_    {        typedef bind1< F,T1 > type;    };};} // namespace auxtemplate<      typename F, typename T1, typename T2    >struct bind2{    template<          typename U1 = void_, typename U2 = void_, typename U3 = void_        , typename U4 = void_, typename U5 = void_        >    struct apply    {     private:        typedef aux::replace_unnamed_arg< F, mpl::arg< 1> > r0;        typedef typename r0::type a0;        typedef typename r0::next_arg n1;        typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;        typedef aux::replace_unnamed_arg< T1,n1 > r1;        typedef typename r1::type a1;        typedef typename r1::next_arg n2;        typedef typename aux::resolve_bind_arg< a1,U1,U2,U3,U4,U5 >::type t1;        typedef aux::replace_unnamed_arg< T2,n2 > r2;        typedef typename r2::type a2;        typedef typename r2::next_arg n3;        typedef typename aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 >::type t2;     public:        typedef typename f_::template apply< t1,t2 >::type type;    };};namespace aux {template<      typename F, typename T1, typename T2    >aux::yes_tagis_bind_helper(bind2< F,T1,T2 >*);} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(3, bind2)namespace aux {template<>struct bind_impl_chooser<2>{    template<          typename F, typename T1, typename T2, typename T3, typename T4        , typename T5        >    struct result_    {        typedef bind2< F,T1,T2 > type;    };};} // namespace auxtemplate<      typename F, typename T1, typename T2, typename T3    >struct bind3{    template<          typename U1 = void_, typename U2 = void_, typename U3 = void_        , typename U4 = void_, typename U5 = void_        >    struct apply    {     private:        typedef aux::replace_unnamed_arg< F, mpl::arg< 1> > r0;        typedef typename r0::type a0;        typedef typename r0::next_arg n1;        typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;        typedef aux::replace_unnamed_arg< T1,n1 > r1;        typedef typename r1::type a1;        typedef typename r1::next_arg n2;        typedef typename aux::resolve_bind_arg< a1,U1,U2,U3,U4,U5 >::type t1;        typedef aux::replace_unnamed_arg< T2,n2 > r2;        typedef typename r2::type a2;        typedef typename r2::next_arg n3;        typedef typename aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 >::type t2;        typedef aux::replace_unnamed_arg< T3,n3 > r3;        typedef typename r3::type a3;        typedef typename r3::next_arg n4;        typedef typename aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 >::type t3;     public:        typedef typename f_::template apply< t1,t2,t3 >::type type;    };};namespace aux {template<      typename F, typename T1, typename T2, typename T3    >aux::yes_tagis_bind_helper(bind3< F,T1,T2,T3 >*);} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(4, bind3)namespace aux {template<>struct bind_impl_chooser<3>{    template<          typename F, typename T1, typename T2, typename T3, typename T4        , typename T5        >    struct result_    {        typedef bind3< F,T1,T2,T3 > type;    };};} // namespace auxtemplate<      typename F, typename T1, typename T2, typename T3, typename T4    >struct bind4{    template<          typename U1 = void_, typename U2 = void_, typename U3 = void_        , typename U4 = void_, typename U5 = void_        >    struct apply    {     private:        typedef aux::replace_unnamed_arg< F, mpl::arg< 1> > r0;        typedef typename r0::type a0;        typedef typename r0::next_arg n1;        typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;        typedef aux::replace_unnamed_arg< T1,n1 > r1;        typedef typename r1::type a1;        typedef typename r1::next_arg n2;        typedef typename aux::resolve_bind_arg< a1,U1,U2,U3,U4,U5 >::type t1;        typedef aux::replace_unnamed_arg< T2,n2 > r2;        typedef typename r2::type a2;        typedef typename r2::next_arg n3;        typedef typename aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 >::type t2;        typedef aux::replace_unnamed_arg< T3,n3 > r3;        typedef typename r3::type a3;        typedef typename r3::next_arg n4;        typedef typename aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 >::type t3;        typedef aux::replace_unnamed_arg< T4,n4 > r4;        typedef typename r4::type a4;        typedef typename r4::next_arg n5;        typedef typename aux::resolve_bind_arg< a4,U1,U2,U3,U4,U5 >::type t4;     public:        typedef typename f_::template apply< t1,t2,t3,t4 >::type type;    };};namespace aux {template<      typename F, typename T1, typename T2, typename T3, typename T4    >aux::yes_tagis_bind_helper(bind4< F,T1,T2,T3,T4 >*);} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(5, bind4)namespace aux {template<>struct bind_impl_chooser<4>{    template<          typename F, typename T1, typename T2, typename T3, typename T4        , typename T5        >    struct result_    {        typedef bind4< F,T1,T2,T3,T4 > type;    };};} // namespace auxtemplate<      typename F, typename T1, typename T2, typename T3, typename T4    , typename T5    >struct bind5{    template<          typename U1 = void_, typename U2 = void_, typename U3 = void_        , typename U4 = void_, typename U5 = void_        >    struct apply    {     private:        typedef aux::replace_unnamed_arg< F, mpl::arg< 1> > r0;        typedef typename r0::type a0;        typedef typename r0::next_arg n1;        typedef typename aux::resolve_bind_arg< a0,U1,U2,U3,U4,U5 >::type f_;        typedef aux::replace_unnamed_arg< T1,n1 > r1;        typedef typename r1::type a1;        typedef typename r1::next_arg n2;        typedef typename aux::resolve_bind_arg< a1,U1,U2,U3,U4,U5 >::type t1;        typedef aux::replace_unnamed_arg< T2,n2 > r2;        typedef typename r2::type a2;        typedef typename r2::next_arg n3;        typedef typename aux::resolve_bind_arg< a2,U1,U2,U3,U4,U5 >::type t2;        typedef aux::replace_unnamed_arg< T3,n3 > r3;        typedef typename r3::type a3;        typedef typename r3::next_arg n4;        typedef typename aux::resolve_bind_arg< a3,U1,U2,U3,U4,U5 >::type t3;        typedef aux::replace_unnamed_arg< T4,n4 > r4;        typedef typename r4::type a4;        typedef typename r4::next_arg n5;        typedef typename aux::resolve_bind_arg< a4,U1,U2,U3,U4,U5 >::type t4;        typedef aux::replace_unnamed_arg< T5,n5 > r5;        typedef typename r5::type a5;        typedef typename r5::next_arg n6;        typedef typename aux::resolve_bind_arg< a5,U1,U2,U3,U4,U5 >::type t5;     public:        typedef typename f_::template apply< t1,t2,t3,t4,t5 >::type type;    };};namespace aux {template<      typename F, typename T1, typename T2, typename T3, typename T4    , typename T5    >aux::yes_tagis_bind_helper(bind5< F,T1,T2,T3,T4,T5 >*);} // namespace auxBOOST_MPL_AUX_ARITY_SPEC(6, bind5)namespace aux {template<>struct bind_impl_chooser<5>{    template<          typename F, typename T1, typename T2, typename T3, typename T4        , typename T5        >    struct result_    {        typedef bind5< F,T1,T2,T3,T4,T5 > type;    };};} // namespace auxnamespace aux {template< typename T >struct is_bind_arg{    static bool const value = true;};template<>struct is_bind_arg<void_>{    static bool const value = false;};template<      typename T1, typename T2, typename T3, typename T4, typename T5    >struct bind_count_args{    static int const value =          is_bind_arg<T1>::value + is_bind_arg<T2>::value         + is_bind_arg<T3>::value + is_bind_arg<T4>::value         + is_bind_arg<T5>::value        ;};}template<      typename F, typename T1, typename T2, typename T3, typename T4    , typename T5    >struct bind    : aux::bind_impl_chooser<          aux::bind_count_args< T1,T2,T3,T4,T5 >::value        >::template result_< F,T1,T2,T3,T4,T5 >::type{};template< typename F, typename T >struct bind1st{    template<          typename U        , typename U2 = void_, typename U3 = void_, typename U4 = void_        , typename U5 = void_        >    struct apply        : F::template apply< T,U >    {    };};template< typename F, typename T >struct bind2nd{    template<          typename U        , typename U2 = void_, typename U3 = void_, typename U4 = void_        , typename U5 = void_        >    struct apply        : F::template apply< U,T >    {    };};} // namespace mpl} // namespace boost

⌨️ 快捷键说明

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