sl@0: #ifndef BOOST_BIND_HPP_INCLUDED sl@0: #define BOOST_BIND_HPP_INCLUDED sl@0: sl@0: // MS compatible compilers support #pragma once sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1020) sl@0: # pragma once sl@0: #endif sl@0: sl@0: // sl@0: // bind.hpp - binds function objects to arguments sl@0: // sl@0: // Copyright (c) 2001-2004 Peter Dimov and Multi Media Ltd. sl@0: // Copyright (c) 2001 David Abrahams sl@0: // Copyright (c) 2005 Peter Dimov sl@0: // sl@0: // Distributed under the Boost Software License, Version 1.0. (See sl@0: // accompanying file LICENSE_1_0.txt or copy at sl@0: // http://www.boost.org/LICENSE_1_0.txt) sl@0: // sl@0: // See http://www.boost.org/libs/bind/bind.html for documentation. sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // Borland-specific bug, visit_each() silently fails to produce code sl@0: sl@0: #if defined(__BORLANDC__) sl@0: # define BOOST_BIND_VISIT_EACH boost::visit_each sl@0: #else sl@0: # define BOOST_BIND_VISIT_EACH visit_each sl@0: #endif sl@0: sl@0: #include sl@0: sl@0: #ifdef BOOST_MSVC sl@0: # pragma warning(push) sl@0: # pragma warning(disable: 4512) // assignment operator could not be generated sl@0: #endif sl@0: sl@0: namespace boost sl@0: { sl@0: sl@0: namespace _bi // implementation details sl@0: { sl@0: sl@0: // result_traits sl@0: sl@0: template struct result_traits sl@0: { sl@0: typedef R type; sl@0: }; sl@0: sl@0: #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) sl@0: sl@0: struct unspecified {}; sl@0: sl@0: template struct result_traits sl@0: { sl@0: typedef typename F::result_type type; sl@0: }; sl@0: sl@0: template struct result_traits< unspecified, reference_wrapper > sl@0: { sl@0: typedef typename F::result_type type; sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // ref_compare sl@0: sl@0: template bool ref_compare( T const & a, T const & b, long ) sl@0: { sl@0: return a == b; sl@0: } sl@0: sl@0: template bool ref_compare( arg const &, arg const &, int ) sl@0: { sl@0: return true; sl@0: } sl@0: sl@0: template bool ref_compare( arg (*) (), arg (*) (), int ) sl@0: { sl@0: return true; sl@0: } sl@0: sl@0: template bool ref_compare( reference_wrapper const & a, reference_wrapper const & b, int ) sl@0: { sl@0: return a.get_pointer() == b.get_pointer(); sl@0: } sl@0: sl@0: // bind_t forward declaration for listN sl@0: sl@0: template class bind_t; sl@0: sl@0: // value sl@0: sl@0: template class value sl@0: { sl@0: public: sl@0: sl@0: value(T const & t): t_(t) {} sl@0: sl@0: T & get() { return t_; } sl@0: T const & get() const { return t_; } sl@0: sl@0: bool operator==(value const & rhs) const sl@0: { sl@0: return t_ == rhs.t_; sl@0: } sl@0: sl@0: private: sl@0: sl@0: T t_; sl@0: }; sl@0: sl@0: // type sl@0: sl@0: template class type {}; sl@0: sl@0: // unwrap sl@0: sl@0: template struct unwrapper sl@0: { sl@0: static inline F & unwrap( F & f, long ) sl@0: { sl@0: return f; sl@0: } sl@0: sl@0: template static inline F2 & unwrap( reference_wrapper rf, int ) sl@0: { sl@0: return rf.get(); sl@0: } sl@0: sl@0: template static inline _mfi::dm unwrap( R T::* pm, int ) sl@0: { sl@0: return _mfi::dm( pm ); sl@0: } sl@0: }; sl@0: sl@0: // listN sl@0: sl@0: class list0 sl@0: { sl@0: public: sl@0: sl@0: list0() {} sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A &, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A &, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A &, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A &, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(); sl@0: } sl@0: sl@0: template void accept(V &) const sl@0: { sl@0: } sl@0: sl@0: bool operator==(list0 const &) const sl@0: { sl@0: return true; sl@0: } sl@0: }; sl@0: sl@0: template< class A1 > class list1: private storage1< A1 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage1< A1 > base_type; sl@0: sl@0: public: sl@0: sl@0: explicit list1( A1 a1 ): base_type( a1 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: sl@0: template T & operator[] ( _bi::value & v ) const { return v.get(); } sl@0: sl@0: template T const & operator[] ( _bi::value const & v ) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list1 const & rhs) const sl@0: { sl@0: return ref_compare(base_type::a1_, rhs.a1_, 0); sl@0: } sl@0: }; sl@0: sl@0: template< class A1, class A2 > class list2: private storage2< A1, A2 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage2< A1, A2 > base_type; sl@0: sl@0: public: sl@0: sl@0: list2( A1 a1, A2 a2 ): base_type( a1, a2 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list2 const & rhs) const sl@0: { sl@0: return ref_compare(base_type::a1_, rhs.a1_, 0) && ref_compare(base_type::a2_, rhs.a2_, 0); sl@0: } sl@0: }; sl@0: sl@0: template< class A1, class A2, class A3 > class list3: private storage3< A1, A2, A3 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage3< A1, A2, A3 > base_type; sl@0: sl@0: public: sl@0: sl@0: list3( A1 a1, A2 a2, A3 a3 ): base_type( a1, a2, a3 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list3 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: template< class A1, class A2, class A3, class A4 > class list4: private storage4< A1, A2, A3, A4 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage4< A1, A2, A3, A4 > base_type; sl@0: sl@0: public: sl@0: sl@0: list4( A1 a1, A2 a2, A3 a3, A4 a4 ): base_type( a1, a2, a3, a4 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4>) const { return base_type::a4_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list4 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ) && sl@0: ref_compare( base_type::a4_, rhs.a4_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: template< class A1, class A2, class A3, class A4, class A5 > class list5: private storage5< A1, A2, A3, A4, A5 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage5< A1, A2, A3, A4, A5 > base_type; sl@0: sl@0: public: sl@0: sl@0: list5( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5 ): base_type( a1, a2, a3, a4, a5 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4>) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5>) const { return base_type::a5_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list5 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ) && sl@0: ref_compare( base_type::a4_, rhs.a4_, 0 ) && sl@0: ref_compare( base_type::a5_, rhs.a5_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: template class list6: private storage6< A1, A2, A3, A4, A5, A6 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage6< A1, A2, A3, A4, A5, A6 > base_type; sl@0: sl@0: public: sl@0: sl@0: list6( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6 ): base_type( a1, a2, a3, a4, a5, a6 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4>) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5>) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6>) const { return base_type::a6_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list6 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ) && sl@0: ref_compare( base_type::a4_, rhs.a4_, 0 ) && sl@0: ref_compare( base_type::a5_, rhs.a5_, 0 ) && sl@0: ref_compare( base_type::a6_, rhs.a6_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: template class list7: private storage7< A1, A2, A3, A4, A5, A6, A7 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage7< A1, A2, A3, A4, A5, A6, A7 > base_type; sl@0: sl@0: public: sl@0: sl@0: list7( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7 ): base_type( a1, a2, a3, a4, a5, a6, a7 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4>) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5>) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6>) const { return base_type::a6_; } sl@0: A7 operator[] (boost::arg<7>) const { return base_type::a7_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; } sl@0: A7 operator[] (boost::arg<7> (*) ()) const { return base_type::a7_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list7 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ) && sl@0: ref_compare( base_type::a4_, rhs.a4_, 0 ) && sl@0: ref_compare( base_type::a5_, rhs.a5_, 0 ) && sl@0: ref_compare( base_type::a6_, rhs.a6_, 0 ) && sl@0: ref_compare( base_type::a7_, rhs.a7_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: template< class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8 > class list8: private storage8< A1, A2, A3, A4, A5, A6, A7, A8 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage8< A1, A2, A3, A4, A5, A6, A7, A8 > base_type; sl@0: sl@0: public: sl@0: sl@0: list8( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8 ): base_type( a1, a2, a3, a4, a5, a6, a7, a8 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4>) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5>) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6>) const { return base_type::a6_; } sl@0: A7 operator[] (boost::arg<7>) const { return base_type::a7_; } sl@0: A8 operator[] (boost::arg<8>) const { return base_type::a8_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; } sl@0: A7 operator[] (boost::arg<7> (*) ()) const { return base_type::a7_; } sl@0: A8 operator[] (boost::arg<8> (*) ()) const { return base_type::a8_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list8 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ) && sl@0: ref_compare( base_type::a4_, rhs.a4_, 0 ) && sl@0: ref_compare( base_type::a5_, rhs.a5_, 0 ) && sl@0: ref_compare( base_type::a6_, rhs.a6_, 0 ) && sl@0: ref_compare( base_type::a7_, rhs.a7_, 0 ) && sl@0: ref_compare( base_type::a8_, rhs.a8_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: template class list9: private storage9< A1, A2, A3, A4, A5, A6, A7, A8, A9 > sl@0: { sl@0: private: sl@0: sl@0: typedef storage9< A1, A2, A3, A4, A5, A6, A7, A8, A9 > base_type; sl@0: sl@0: public: sl@0: sl@0: list9( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9 ): base_type( a1, a2, a3, a4, a5, a6, a7, a8, a9 ) {} sl@0: sl@0: A1 operator[] (boost::arg<1>) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2>) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3>) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4>) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5>) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6>) const { return base_type::a6_; } sl@0: A7 operator[] (boost::arg<7>) const { return base_type::a7_; } sl@0: A8 operator[] (boost::arg<8>) const { return base_type::a8_; } sl@0: A9 operator[] (boost::arg<9>) const { return base_type::a9_; } sl@0: sl@0: A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; } sl@0: A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; } sl@0: A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; } sl@0: A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; } sl@0: A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; } sl@0: A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; } sl@0: A7 operator[] (boost::arg<7> (*) ()) const { return base_type::a7_; } sl@0: A8 operator[] (boost::arg<8> (*) ()) const { return base_type::a8_; } sl@0: A9 operator[] (boost::arg<9> (*) ()) const { return base_type::a9_; } sl@0: sl@0: template T & operator[] (_bi::value & v) const { return v.get(); } sl@0: sl@0: template T const & operator[] (_bi::value const & v) const { return v.get(); } sl@0: sl@0: template T & operator[] (reference_wrapper const & v) const { return v.get(); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t & b) const { return b.eval(*this); } sl@0: sl@0: template typename result_traits::type operator[] (bind_t const & b) const { return b.eval(*this); } sl@0: sl@0: template R operator()(type, F & f, A & a, long) sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_], a[base_type::a9_]); sl@0: } sl@0: sl@0: template R operator()(type, F const & f, A & a, long) const sl@0: { sl@0: return unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_], a[base_type::a9_]); sl@0: } sl@0: sl@0: template void operator()(type, F & f, A & a, int) sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_], a[base_type::a9_]); sl@0: } sl@0: sl@0: template void operator()(type, F const & f, A & a, int) const sl@0: { sl@0: unwrapper::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_], a[base_type::a6_], a[base_type::a7_], a[base_type::a8_], a[base_type::a9_]); sl@0: } sl@0: sl@0: template void accept(V & v) const sl@0: { sl@0: base_type::accept(v); sl@0: } sl@0: sl@0: bool operator==(list9 const & rhs) const sl@0: { sl@0: return sl@0: sl@0: ref_compare( base_type::a1_, rhs.a1_, 0 ) && sl@0: ref_compare( base_type::a2_, rhs.a2_, 0 ) && sl@0: ref_compare( base_type::a3_, rhs.a3_, 0 ) && sl@0: ref_compare( base_type::a4_, rhs.a4_, 0 ) && sl@0: ref_compare( base_type::a5_, rhs.a5_, 0 ) && sl@0: ref_compare( base_type::a6_, rhs.a6_, 0 ) && sl@0: ref_compare( base_type::a7_, rhs.a7_, 0 ) && sl@0: ref_compare( base_type::a8_, rhs.a8_, 0 ) && sl@0: ref_compare( base_type::a9_, rhs.a9_, 0 ); sl@0: } sl@0: }; sl@0: sl@0: // bind_t sl@0: sl@0: #ifndef BOOST_NO_VOID_RETURNS sl@0: sl@0: template class bind_t sl@0: { sl@0: public: sl@0: sl@0: typedef bind_t this_type; sl@0: sl@0: bind_t(F f, L const & l): f_(f), l_(l) {} sl@0: sl@0: #define BOOST_BIND_RETURN return sl@0: #include sl@0: #undef BOOST_BIND_RETURN sl@0: sl@0: }; sl@0: sl@0: #else sl@0: sl@0: template struct bind_t_generator sl@0: { sl@0: sl@0: template class implementation sl@0: { sl@0: public: sl@0: sl@0: typedef implementation this_type; sl@0: sl@0: implementation(F f, L const & l): f_(f), l_(l) {} sl@0: sl@0: #define BOOST_BIND_RETURN return sl@0: #include sl@0: #undef BOOST_BIND_RETURN sl@0: sl@0: }; sl@0: sl@0: }; sl@0: sl@0: template<> struct bind_t_generator sl@0: { sl@0: sl@0: template class implementation sl@0: { sl@0: private: sl@0: sl@0: typedef void R; sl@0: sl@0: public: sl@0: sl@0: typedef implementation this_type; sl@0: sl@0: implementation(F f, L const & l): f_(f), l_(l) {} sl@0: sl@0: #define BOOST_BIND_RETURN sl@0: #include sl@0: #undef BOOST_BIND_RETURN sl@0: sl@0: }; sl@0: sl@0: }; sl@0: sl@0: template class bind_t: public bind_t_generator::BOOST_NESTED_TEMPLATE implementation sl@0: { sl@0: public: sl@0: sl@0: bind_t(F f, L const & l): bind_t_generator::BOOST_NESTED_TEMPLATE implementation(f, l) {} sl@0: sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // function_equal sl@0: sl@0: #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP sl@0: sl@0: // put overloads in _bi, rely on ADL sl@0: sl@0: # ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING sl@0: sl@0: template bool function_equal( bind_t const & a, bind_t const & b ) sl@0: { sl@0: return a.compare(b); sl@0: } sl@0: sl@0: # else sl@0: sl@0: template bool function_equal_impl( bind_t const & a, bind_t const & b, int ) sl@0: { sl@0: return a.compare(b); sl@0: } sl@0: sl@0: # endif // #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING sl@0: sl@0: #else // BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP sl@0: sl@0: // put overloads in boost sl@0: sl@0: } // namespace _bi sl@0: sl@0: # ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING sl@0: sl@0: template bool function_equal( _bi::bind_t const & a, _bi::bind_t const & b ) sl@0: { sl@0: return a.compare(b); sl@0: } sl@0: sl@0: # else sl@0: sl@0: template bool function_equal_impl( _bi::bind_t const & a, _bi::bind_t const & b, int ) sl@0: { sl@0: return a.compare(b); sl@0: } sl@0: sl@0: # endif // #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING sl@0: sl@0: namespace _bi sl@0: { sl@0: sl@0: #endif // BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP sl@0: sl@0: // add_value sl@0: sl@0: #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || (__SUNPRO_CC >= 0x530) sl@0: sl@0: template struct add_value sl@0: { sl@0: typedef _bi::value type; sl@0: }; sl@0: sl@0: template struct add_value< value > sl@0: { sl@0: typedef _bi::value type; sl@0: }; sl@0: sl@0: template struct add_value< reference_wrapper > sl@0: { sl@0: typedef reference_wrapper type; sl@0: }; sl@0: sl@0: template struct add_value< arg > sl@0: { sl@0: typedef boost::arg type; sl@0: }; sl@0: sl@0: template struct add_value< arg (*) () > sl@0: { sl@0: typedef boost::arg (*type) (); sl@0: }; sl@0: sl@0: template struct add_value< bind_t > sl@0: { sl@0: typedef bind_t type; sl@0: }; sl@0: sl@0: #else sl@0: sl@0: template struct _avt_0; sl@0: sl@0: template<> struct _avt_0<1> sl@0: { sl@0: template struct inner sl@0: { sl@0: typedef T type; sl@0: }; sl@0: }; sl@0: sl@0: template<> struct _avt_0<2> sl@0: { sl@0: template struct inner sl@0: { sl@0: typedef value type; sl@0: }; sl@0: }; sl@0: sl@0: typedef char (&_avt_r1) [1]; sl@0: typedef char (&_avt_r2) [2]; sl@0: sl@0: template _avt_r1 _avt_f(value); sl@0: template _avt_r1 _avt_f(reference_wrapper); sl@0: template _avt_r1 _avt_f(arg); sl@0: template _avt_r1 _avt_f(arg (*) ()); sl@0: template _avt_r1 _avt_f(bind_t); sl@0: sl@0: _avt_r2 _avt_f(...); sl@0: sl@0: template struct add_value sl@0: { sl@0: static T t(); sl@0: typedef typename _avt_0::template inner::type type; sl@0: }; sl@0: sl@0: #endif sl@0: sl@0: // list_av_N sl@0: sl@0: template struct list_av_1 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef list1 type; sl@0: }; sl@0: sl@0: template struct list_av_2 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef list2 type; sl@0: }; sl@0: sl@0: template struct list_av_3 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef list3 type; sl@0: }; sl@0: sl@0: template struct list_av_4 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef typename add_value::type B4; sl@0: typedef list4 type; sl@0: }; sl@0: sl@0: template struct list_av_5 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef typename add_value::type B4; sl@0: typedef typename add_value::type B5; sl@0: typedef list5 type; sl@0: }; sl@0: sl@0: template struct list_av_6 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef typename add_value::type B4; sl@0: typedef typename add_value::type B5; sl@0: typedef typename add_value::type B6; sl@0: typedef list6 type; sl@0: }; sl@0: sl@0: template struct list_av_7 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef typename add_value::type B4; sl@0: typedef typename add_value::type B5; sl@0: typedef typename add_value::type B6; sl@0: typedef typename add_value::type B7; sl@0: typedef list7 type; sl@0: }; sl@0: sl@0: template struct list_av_8 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef typename add_value::type B4; sl@0: typedef typename add_value::type B5; sl@0: typedef typename add_value::type B6; sl@0: typedef typename add_value::type B7; sl@0: typedef typename add_value::type B8; sl@0: typedef list8 type; sl@0: }; sl@0: sl@0: template struct list_av_9 sl@0: { sl@0: typedef typename add_value::type B1; sl@0: typedef typename add_value::type B2; sl@0: typedef typename add_value::type B3; sl@0: typedef typename add_value::type B4; sl@0: typedef typename add_value::type B5; sl@0: typedef typename add_value::type B6; sl@0: typedef typename add_value::type B7; sl@0: typedef typename add_value::type B8; sl@0: typedef typename add_value::type B9; sl@0: typedef list9 type; sl@0: }; sl@0: sl@0: // operator! sl@0: sl@0: struct logical_not sl@0: { sl@0: template bool operator()(V const & v) const { return !v; } sl@0: }; sl@0: sl@0: template sl@0: bind_t< bool, logical_not, list1< bind_t > > sl@0: operator! (bind_t const & f) sl@0: { sl@0: typedef list1< bind_t > list_type; sl@0: return bind_t ( logical_not(), list_type(f) ); sl@0: } sl@0: sl@0: // relational operators sl@0: sl@0: #define BOOST_BIND_OPERATOR( op, name ) \ sl@0: \ sl@0: struct name \ sl@0: { \ sl@0: template bool operator()(V const & v, W const & w) const { return v op w; } \ sl@0: }; \ sl@0: \ sl@0: template \ sl@0: bind_t< bool, name, list2< bind_t, typename add_value::type > > \ sl@0: operator op (bind_t const & f, A2 a2) \ sl@0: { \ sl@0: typedef typename add_value::type B2; \ sl@0: typedef list2< bind_t, B2> list_type; \ sl@0: return bind_t ( name(), list_type(f, a2) ); \ sl@0: } sl@0: sl@0: BOOST_BIND_OPERATOR( ==, equal ) sl@0: BOOST_BIND_OPERATOR( !=, not_equal ) sl@0: sl@0: BOOST_BIND_OPERATOR( <, less ) sl@0: BOOST_BIND_OPERATOR( <=, less_equal ) sl@0: sl@0: BOOST_BIND_OPERATOR( >, greater ) sl@0: BOOST_BIND_OPERATOR( >=, greater_equal ) sl@0: sl@0: #undef BOOST_BIND_OPERATOR sl@0: sl@0: #if defined(__GNUC__) && BOOST_WORKAROUND(__GNUC__, < 3) sl@0: sl@0: // resolve ambiguity with rel_ops sl@0: sl@0: #define BOOST_BIND_OPERATOR( op, name ) \ sl@0: \ sl@0: template \ sl@0: bind_t< bool, name, list2< bind_t, bind_t > > \ sl@0: operator op (bind_t const & f, bind_t const & g) \ sl@0: { \ sl@0: typedef list2< bind_t, bind_t > list_type; \ sl@0: return bind_t ( name(), list_type(f, g) ); \ sl@0: } sl@0: sl@0: BOOST_BIND_OPERATOR( !=, not_equal ) sl@0: BOOST_BIND_OPERATOR( <=, less_equal ) sl@0: BOOST_BIND_OPERATOR( >, greater ) sl@0: BOOST_BIND_OPERATOR( >=, greater_equal ) sl@0: sl@0: #endif sl@0: sl@0: // visit_each, ADL sl@0: sl@0: #if !defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) && !defined( __BORLANDC__ ) \ sl@0: && !(defined(__GNUC__) && __GNUC__ == 3 && __GNUC_MINOR__ <= 3) sl@0: sl@0: template void visit_each( V & v, value const & t, int ) sl@0: { sl@0: using boost::visit_each; sl@0: BOOST_BIND_VISIT_EACH( v, t.get(), 0 ); sl@0: } sl@0: sl@0: template void visit_each( V & v, bind_t const & t, int ) sl@0: { sl@0: t.accept( v ); sl@0: } sl@0: sl@0: #endif sl@0: sl@0: } // namespace _bi sl@0: sl@0: // visit_each, no ADL sl@0: sl@0: #if defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) || defined( __BORLANDC__ ) \ sl@0: || (defined(__GNUC__) && __GNUC__ == 3 && __GNUC_MINOR__ <= 3) sl@0: sl@0: template void visit_each( V & v, _bi::value const & t, int ) sl@0: { sl@0: BOOST_BIND_VISIT_EACH( v, t.get(), 0 ); sl@0: } sl@0: sl@0: template void visit_each( V & v, _bi::bind_t const & t, int ) sl@0: { sl@0: t.accept( v ); sl@0: } sl@0: sl@0: #endif sl@0: sl@0: // bind sl@0: sl@0: #ifndef BOOST_BIND sl@0: #define BOOST_BIND bind sl@0: #endif sl@0: sl@0: // generic function objects sl@0: sl@0: template sl@0: _bi::bind_t sl@0: BOOST_BIND(F f) sl@0: { sl@0: typedef _bi::list0 list_type; sl@0: return _bi::bind_t (f, list_type()); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1) sl@0: { sl@0: typedef typename _bi::list_av_1::type list_type; sl@0: return _bi::bind_t (f, list_type(a1)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2) sl@0: { sl@0: typedef typename _bi::list_av_2::type list_type; sl@0: return _bi::bind_t (f, list_type(a1, a2)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3) sl@0: { sl@0: typedef typename _bi::list_av_3::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4) sl@0: { sl@0: typedef typename _bi::list_av_4::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) sl@0: { sl@0: typedef typename _bi::list_av_5::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) sl@0: { sl@0: typedef typename _bi::list_av_6::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) sl@0: { sl@0: typedef typename _bi::list_av_7::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6, a7)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) sl@0: { sl@0: typedef typename _bi::list_av_8::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9) sl@0: { sl@0: typedef typename _bi::list_av_9::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8, a9)); sl@0: } sl@0: sl@0: // generic function objects, alternative syntax sl@0: sl@0: template sl@0: _bi::bind_t sl@0: BOOST_BIND(boost::type, F f) sl@0: { sl@0: typedef _bi::list0 list_type; sl@0: return _bi::bind_t (f, list_type()); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1) sl@0: { sl@0: typedef typename _bi::list_av_1::type list_type; sl@0: return _bi::bind_t (f, list_type(a1)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2) sl@0: { sl@0: typedef typename _bi::list_av_2::type list_type; sl@0: return _bi::bind_t (f, list_type(a1, a2)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3) sl@0: { sl@0: typedef typename _bi::list_av_3::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3, A4 a4) sl@0: { sl@0: typedef typename _bi::list_av_4::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) sl@0: { sl@0: typedef typename _bi::list_av_5::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) sl@0: { sl@0: typedef typename _bi::list_av_6::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) sl@0: { sl@0: typedef typename _bi::list_av_7::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6, a7)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) sl@0: { sl@0: typedef typename _bi::list_av_8::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t::type> sl@0: BOOST_BIND(boost::type, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9) sl@0: { sl@0: typedef typename _bi::list_av_9::type list_type; sl@0: return _bi::bind_t(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8, a9)); sl@0: } sl@0: sl@0: #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) sl@0: sl@0: // adaptable function objects sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, _bi::list0> sl@0: BOOST_BIND(F f) sl@0: { sl@0: typedef _bi::list0 list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type> (f, list_type()); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_1::type> sl@0: BOOST_BIND(F f, A1 a1) sl@0: { sl@0: typedef typename _bi::list_av_1::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type> (f, list_type(a1)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_2::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2) sl@0: { sl@0: typedef typename _bi::list_av_2::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type> (f, list_type(a1, a2)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_3::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3) sl@0: { sl@0: typedef typename _bi::list_av_3::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_4::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4) sl@0: { sl@0: typedef typename _bi::list_av_4::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_5::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5) sl@0: { sl@0: typedef typename _bi::list_av_5::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_6::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6) sl@0: { sl@0: typedef typename _bi::list_av_6::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_7::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7) sl@0: { sl@0: typedef typename _bi::list_av_7::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_8::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8) sl@0: { sl@0: typedef typename _bi::list_av_8::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8)); sl@0: } sl@0: sl@0: template sl@0: _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_9::type> sl@0: BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9) sl@0: { sl@0: typedef typename _bi::list_av_9::type list_type; sl@0: return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8, a9)); sl@0: } sl@0: sl@0: #endif // !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) sl@0: sl@0: // function pointers sl@0: sl@0: #define BOOST_BIND_CC sl@0: #define BOOST_BIND_ST sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_CC sl@0: #undef BOOST_BIND_ST sl@0: sl@0: #ifdef BOOST_BIND_ENABLE_STDCALL sl@0: sl@0: #define BOOST_BIND_CC __stdcall sl@0: #define BOOST_BIND_ST sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_CC sl@0: #undef BOOST_BIND_ST sl@0: sl@0: #endif sl@0: sl@0: #ifdef BOOST_BIND_ENABLE_FASTCALL sl@0: sl@0: #define BOOST_BIND_CC __fastcall sl@0: #define BOOST_BIND_ST sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_CC sl@0: #undef BOOST_BIND_ST sl@0: sl@0: #endif sl@0: sl@0: #ifdef BOOST_BIND_ENABLE_PASCAL sl@0: sl@0: #define BOOST_BIND_ST pascal sl@0: #define BOOST_BIND_CC sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_ST sl@0: #undef BOOST_BIND_CC sl@0: sl@0: #endif sl@0: sl@0: // member function pointers sl@0: sl@0: #define BOOST_BIND_MF_NAME(X) X sl@0: #define BOOST_BIND_MF_CC sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_MF_NAME sl@0: #undef BOOST_BIND_MF_CC sl@0: sl@0: #ifdef BOOST_MEM_FN_ENABLE_CDECL sl@0: sl@0: #define BOOST_BIND_MF_NAME(X) X##_cdecl sl@0: #define BOOST_BIND_MF_CC __cdecl sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_MF_NAME sl@0: #undef BOOST_BIND_MF_CC sl@0: sl@0: #endif sl@0: sl@0: #ifdef BOOST_MEM_FN_ENABLE_STDCALL sl@0: sl@0: #define BOOST_BIND_MF_NAME(X) X##_stdcall sl@0: #define BOOST_BIND_MF_CC __stdcall sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_MF_NAME sl@0: #undef BOOST_BIND_MF_CC sl@0: sl@0: #endif sl@0: sl@0: #ifdef BOOST_MEM_FN_ENABLE_FASTCALL sl@0: sl@0: #define BOOST_BIND_MF_NAME(X) X##_fastcall sl@0: #define BOOST_BIND_MF_CC __fastcall sl@0: sl@0: #include sl@0: sl@0: #undef BOOST_BIND_MF_NAME sl@0: #undef BOOST_BIND_MF_CC sl@0: sl@0: #endif sl@0: sl@0: // data member pointers sl@0: sl@0: #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \ sl@0: || ( defined(__BORLANDC__) && BOOST_WORKAROUND( __BORLANDC__, < 0x600 ) ) sl@0: sl@0: template sl@0: _bi::bind_t< R, _mfi::dm, typename _bi::list_av_1::type > sl@0: BOOST_BIND(R T::*f, A1 a1) sl@0: { sl@0: typedef _mfi::dm F; sl@0: typedef typename _bi::list_av_1::type list_type; sl@0: return _bi::bind_t( F(f), list_type(a1) ); sl@0: } sl@0: sl@0: #else sl@0: sl@0: namespace _bi sl@0: { sl@0: sl@0: template< class Pm, int I > struct add_cref; sl@0: sl@0: template< class M, class T > struct add_cref< M T::*, 0 > sl@0: { sl@0: typedef M type; sl@0: }; sl@0: sl@0: template< class M, class T > struct add_cref< M T::*, 1 > sl@0: { sl@0: typedef M const & type; sl@0: }; sl@0: sl@0: template< class R, class T > struct add_cref< R (T::*) (), 1 > sl@0: { sl@0: typedef void type; sl@0: }; sl@0: sl@0: #if !( defined(__IBMCPP__) && BOOST_WORKAROUND( __IBMCPP__, BOOST_TESTED_AT(600) ) ) sl@0: sl@0: template< class R, class T > struct add_cref< R (T::*) () const, 1 > sl@0: { sl@0: typedef void type; sl@0: }; sl@0: sl@0: #endif // __IBMCPP__ sl@0: sl@0: template struct isref sl@0: { sl@0: enum value_type { value = 0 }; sl@0: }; sl@0: sl@0: template struct isref< R& > sl@0: { sl@0: enum value_type { value = 1 }; sl@0: }; sl@0: sl@0: template struct isref< R* > sl@0: { sl@0: enum value_type { value = 1 }; sl@0: }; sl@0: sl@0: template struct dm_result sl@0: { sl@0: typedef typename add_cref< Pm, 1 >::type type; sl@0: }; sl@0: sl@0: template struct dm_result< Pm, bind_t > sl@0: { sl@0: typedef typename bind_t::result_type result_type; sl@0: typedef typename add_cref< Pm, isref< result_type >::value >::type type; sl@0: }; sl@0: sl@0: } // namespace _bi sl@0: sl@0: template< class A1, class M, class T > sl@0: sl@0: _bi::bind_t< sl@0: typename _bi::dm_result< M T::*, A1 >::type, sl@0: _mfi::dm, sl@0: typename _bi::list_av_1::type sl@0: > sl@0: sl@0: BOOST_BIND( M T::*f, A1 a1 ) sl@0: { sl@0: typedef typename _bi::dm_result< M T::*, A1 >::type result_type; sl@0: typedef _mfi::dm F; sl@0: typedef typename _bi::list_av_1::type list_type; sl@0: return _bi::bind_t< result_type, F, list_type >( F( f ), list_type( a1 ) ); sl@0: } sl@0: sl@0: #endif sl@0: sl@0: } // namespace boost sl@0: sl@0: #ifndef BOOST_BIND_NO_PLACEHOLDERS sl@0: sl@0: # include sl@0: sl@0: #endif sl@0: sl@0: #ifdef BOOST_MSVC sl@0: # pragma warning(default: 4512) // assignment operator could not be generated sl@0: # pragma warning(pop) sl@0: #endif sl@0: sl@0: #endif // #ifndef BOOST_BIND_HPP_INCLUDED