bind.hpp 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. #ifndef BOOST_BIND_BIND_HPP_INCLUDED
  2. #define BOOST_BIND_BIND_HPP_INCLUDED
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  5. # pragma once
  6. #endif
  7. //
  8. // bind.hpp - binds function objects to arguments
  9. //
  10. // Copyright (c) 2001-2004 Peter Dimov and Multi Media Ltd.
  11. // Copyright (c) 2001 David Abrahams
  12. // Copyright (c) 2005 Peter Dimov
  13. //
  14. // Distributed under the Boost Software License, Version 1.0. (See
  15. // accompanying file LICENSE_1_0.txt or copy at
  16. // http://www.boost.org/LICENSE_1_0.txt)
  17. //
  18. // See http://www.boost.org/libs/bind/bind.html for documentation.
  19. //
  20. #include <boost/config.hpp>
  21. #include <boost/ref.hpp>
  22. #include <boost/mem_fn.hpp>
  23. #include <boost/type.hpp>
  24. #include <boost/is_placeholder.hpp>
  25. #include <boost/bind/arg.hpp>
  26. #include <boost/detail/workaround.hpp>
  27. #include <boost/visit_each.hpp>
  28. #include <boost/core/enable_if.hpp>
  29. #include <boost/core/is_same.hpp>
  30. #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  31. #include <utility> // std::forward
  32. #endif
  33. // Borland-specific bug, visit_each() silently fails to produce code
  34. #if defined(__BORLANDC__)
  35. # define BOOST_BIND_VISIT_EACH boost::visit_each
  36. #else
  37. # define BOOST_BIND_VISIT_EACH visit_each
  38. #endif
  39. #include <boost/bind/storage.hpp>
  40. #ifdef BOOST_MSVC
  41. # pragma warning(push)
  42. # pragma warning(disable: 4512) // assignment operator could not be generated
  43. #endif
  44. namespace boost
  45. {
  46. template<class T> class weak_ptr;
  47. namespace _bi // implementation details
  48. {
  49. // result_traits
  50. template<class R, class F> struct result_traits
  51. {
  52. typedef R type;
  53. };
  54. #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
  55. struct unspecified {};
  56. template<class F> struct result_traits<unspecified, F>
  57. {
  58. typedef typename F::result_type type;
  59. };
  60. template<class F> struct result_traits< unspecified, reference_wrapper<F> >
  61. {
  62. typedef typename F::result_type type;
  63. };
  64. #endif
  65. // ref_compare
  66. template<class T> bool ref_compare( T const & a, T const & b, long )
  67. {
  68. return a == b;
  69. }
  70. template<int I> bool ref_compare( arg<I> const &, arg<I> const &, int )
  71. {
  72. return true;
  73. }
  74. template<int I> bool ref_compare( arg<I> (*) (), arg<I> (*) (), int )
  75. {
  76. return true;
  77. }
  78. template<class T> bool ref_compare( reference_wrapper<T> const & a, reference_wrapper<T> const & b, int )
  79. {
  80. return a.get_pointer() == b.get_pointer();
  81. }
  82. // bind_t forward declaration for listN
  83. template<class R, class F, class L> class bind_t;
  84. template<class R, class F, class L> bool ref_compare( bind_t<R, F, L> const & a, bind_t<R, F, L> const & b, int )
  85. {
  86. return a.compare( b );
  87. }
  88. // value
  89. template<class T> class value
  90. {
  91. public:
  92. value(T const & t): t_(t) {}
  93. T & get() { return t_; }
  94. T const & get() const { return t_; }
  95. bool operator==(value const & rhs) const
  96. {
  97. return t_ == rhs.t_;
  98. }
  99. private:
  100. T t_;
  101. };
  102. // ref_compare for weak_ptr
  103. template<class T> bool ref_compare( value< weak_ptr<T> > const & a, value< weak_ptr<T> > const & b, int )
  104. {
  105. return !(a.get() < b.get()) && !(b.get() < a.get());
  106. }
  107. // type
  108. template<class T> class type {};
  109. // unwrap
  110. template<class F> struct unwrapper
  111. {
  112. static inline F & unwrap( F & f, long )
  113. {
  114. return f;
  115. }
  116. template<class F2> static inline F2 & unwrap( reference_wrapper<F2> rf, int )
  117. {
  118. return rf.get();
  119. }
  120. template<class R, class T> static inline _mfi::dm<R, T> unwrap( R T::* pm, int )
  121. {
  122. return _mfi::dm<R, T>( pm );
  123. }
  124. };
  125. // listN
  126. class list0
  127. {
  128. public:
  129. list0() {}
  130. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  131. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  132. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  133. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  134. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  135. template<class R, class F, class A> R operator()(type<R>, F & f, A &, long)
  136. {
  137. return unwrapper<F>::unwrap(f, 0)();
  138. }
  139. template<class R, class F, class A> R operator()(type<R>, F const & f, A &, long) const
  140. {
  141. return unwrapper<F const>::unwrap(f, 0)();
  142. }
  143. template<class F, class A> void operator()(type<void>, F & f, A &, int)
  144. {
  145. unwrapper<F>::unwrap(f, 0)();
  146. }
  147. template<class F, class A> void operator()(type<void>, F const & f, A &, int) const
  148. {
  149. unwrapper<F const>::unwrap(f, 0)();
  150. }
  151. template<class V> void accept(V &) const
  152. {
  153. }
  154. bool operator==(list0 const &) const
  155. {
  156. return true;
  157. }
  158. };
  159. #ifdef BOOST_MSVC
  160. // MSVC is bright enough to realise that the parameter rhs
  161. // in operator==may be unused for some template argument types:
  162. #pragma warning(push)
  163. #pragma warning(disable:4100)
  164. #endif
  165. template< class A1 > class list1: private storage1< A1 >
  166. {
  167. private:
  168. typedef storage1< A1 > base_type;
  169. public:
  170. explicit list1( A1 a1 ): base_type( a1 ) {}
  171. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  172. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  173. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  174. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  175. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  176. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  177. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  178. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  179. {
  180. return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_]);
  181. }
  182. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  183. {
  184. return unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_]);
  185. }
  186. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  187. {
  188. unwrapper<F>::unwrap(f, 0)(a[base_type::a1_]);
  189. }
  190. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  191. {
  192. unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_]);
  193. }
  194. template<class V> void accept(V & v) const
  195. {
  196. base_type::accept(v);
  197. }
  198. bool operator==(list1 const & rhs) const
  199. {
  200. return ref_compare(base_type::a1_, rhs.a1_, 0);
  201. }
  202. };
  203. struct logical_and;
  204. struct logical_or;
  205. template< class A1, class A2 > class list2: private storage2< A1, A2 >
  206. {
  207. private:
  208. typedef storage2< A1, A2 > base_type;
  209. public:
  210. list2( A1 a1, A2 a2 ): base_type( a1, a2 ) {}
  211. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  212. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  213. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  214. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  215. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  216. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  217. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  218. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  219. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  220. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  221. {
  222. return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]);
  223. }
  224. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  225. {
  226. return unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]);
  227. }
  228. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  229. {
  230. unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]);
  231. }
  232. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  233. {
  234. unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_]);
  235. }
  236. template<class A> bool operator()( type<bool>, logical_and & /*f*/, A & a, int )
  237. {
  238. return a[ base_type::a1_ ] && a[ base_type::a2_ ];
  239. }
  240. template<class A> bool operator()( type<bool>, logical_and const & /*f*/, A & a, int ) const
  241. {
  242. return a[ base_type::a1_ ] && a[ base_type::a2_ ];
  243. }
  244. template<class A> bool operator()( type<bool>, logical_or & /*f*/, A & a, int )
  245. {
  246. return a[ base_type::a1_ ] || a[ base_type::a2_ ];
  247. }
  248. template<class A> bool operator()( type<bool>, logical_or const & /*f*/, A & a, int ) const
  249. {
  250. return a[ base_type::a1_ ] || a[ base_type::a2_ ];
  251. }
  252. template<class V> void accept(V & v) const
  253. {
  254. base_type::accept(v);
  255. }
  256. bool operator==(list2 const & rhs) const
  257. {
  258. return ref_compare(base_type::a1_, rhs.a1_, 0) && ref_compare(base_type::a2_, rhs.a2_, 0);
  259. }
  260. };
  261. template< class A1, class A2, class A3 > class list3: private storage3< A1, A2, A3 >
  262. {
  263. private:
  264. typedef storage3< A1, A2, A3 > base_type;
  265. public:
  266. list3( A1 a1, A2 a2, A3 a3 ): base_type( a1, a2, a3 ) {}
  267. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  268. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  269. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  270. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  271. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  272. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  273. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  274. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  275. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  276. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  277. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  278. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  279. {
  280. return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]);
  281. }
  282. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  283. {
  284. return unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]);
  285. }
  286. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  287. {
  288. unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]);
  289. }
  290. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  291. {
  292. unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_]);
  293. }
  294. template<class V> void accept(V & v) const
  295. {
  296. base_type::accept(v);
  297. }
  298. bool operator==(list3 const & rhs) const
  299. {
  300. return
  301. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  302. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  303. ref_compare( base_type::a3_, rhs.a3_, 0 );
  304. }
  305. };
  306. template< class A1, class A2, class A3, class A4 > class list4: private storage4< A1, A2, A3, A4 >
  307. {
  308. private:
  309. typedef storage4< A1, A2, A3, A4 > base_type;
  310. public:
  311. list4( A1 a1, A2 a2, A3 a3, A4 a4 ): base_type( a1, a2, a3, a4 ) {}
  312. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  313. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  314. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  315. A4 operator[] (boost::arg<4>) const { return base_type::a4_; }
  316. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  317. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  318. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  319. A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; }
  320. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  321. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  322. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  323. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  324. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  325. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  326. {
  327. return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]);
  328. }
  329. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  330. {
  331. return unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]);
  332. }
  333. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  334. {
  335. unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]);
  336. }
  337. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  338. {
  339. unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_]);
  340. }
  341. template<class V> void accept(V & v) const
  342. {
  343. base_type::accept(v);
  344. }
  345. bool operator==(list4 const & rhs) const
  346. {
  347. return
  348. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  349. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  350. ref_compare( base_type::a3_, rhs.a3_, 0 ) &&
  351. ref_compare( base_type::a4_, rhs.a4_, 0 );
  352. }
  353. };
  354. template< class A1, class A2, class A3, class A4, class A5 > class list5: private storage5< A1, A2, A3, A4, A5 >
  355. {
  356. private:
  357. typedef storage5< A1, A2, A3, A4, A5 > base_type;
  358. public:
  359. list5( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5 ): base_type( a1, a2, a3, a4, a5 ) {}
  360. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  361. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  362. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  363. A4 operator[] (boost::arg<4>) const { return base_type::a4_; }
  364. A5 operator[] (boost::arg<5>) const { return base_type::a5_; }
  365. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  366. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  367. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  368. A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; }
  369. A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; }
  370. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  371. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  372. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  373. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  374. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  375. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  376. {
  377. return unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]);
  378. }
  379. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  380. {
  381. return unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]);
  382. }
  383. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  384. {
  385. unwrapper<F>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]);
  386. }
  387. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  388. {
  389. unwrapper<F const>::unwrap(f, 0)(a[base_type::a1_], a[base_type::a2_], a[base_type::a3_], a[base_type::a4_], a[base_type::a5_]);
  390. }
  391. template<class V> void accept(V & v) const
  392. {
  393. base_type::accept(v);
  394. }
  395. bool operator==(list5 const & rhs) const
  396. {
  397. return
  398. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  399. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  400. ref_compare( base_type::a3_, rhs.a3_, 0 ) &&
  401. ref_compare( base_type::a4_, rhs.a4_, 0 ) &&
  402. ref_compare( base_type::a5_, rhs.a5_, 0 );
  403. }
  404. };
  405. template<class A1, class A2, class A3, class A4, class A5, class A6> class list6: private storage6< A1, A2, A3, A4, A5, A6 >
  406. {
  407. private:
  408. typedef storage6< A1, A2, A3, A4, A5, A6 > base_type;
  409. public:
  410. list6( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6 ): base_type( a1, a2, a3, a4, a5, a6 ) {}
  411. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  412. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  413. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  414. A4 operator[] (boost::arg<4>) const { return base_type::a4_; }
  415. A5 operator[] (boost::arg<5>) const { return base_type::a5_; }
  416. A6 operator[] (boost::arg<6>) const { return base_type::a6_; }
  417. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  418. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  419. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  420. A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; }
  421. A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; }
  422. A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; }
  423. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  424. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  425. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  426. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  427. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  428. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  429. {
  430. return unwrapper<F>::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_]);
  431. }
  432. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  433. {
  434. return unwrapper<F const>::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_]);
  435. }
  436. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  437. {
  438. unwrapper<F>::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_]);
  439. }
  440. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  441. {
  442. unwrapper<F const>::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_]);
  443. }
  444. template<class V> void accept(V & v) const
  445. {
  446. base_type::accept(v);
  447. }
  448. bool operator==(list6 const & rhs) const
  449. {
  450. return
  451. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  452. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  453. ref_compare( base_type::a3_, rhs.a3_, 0 ) &&
  454. ref_compare( base_type::a4_, rhs.a4_, 0 ) &&
  455. ref_compare( base_type::a5_, rhs.a5_, 0 ) &&
  456. ref_compare( base_type::a6_, rhs.a6_, 0 );
  457. }
  458. };
  459. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7> class list7: private storage7< A1, A2, A3, A4, A5, A6, A7 >
  460. {
  461. private:
  462. typedef storage7< A1, A2, A3, A4, A5, A6, A7 > base_type;
  463. public:
  464. list7( A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7 ): base_type( a1, a2, a3, a4, a5, a6, a7 ) {}
  465. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  466. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  467. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  468. A4 operator[] (boost::arg<4>) const { return base_type::a4_; }
  469. A5 operator[] (boost::arg<5>) const { return base_type::a5_; }
  470. A6 operator[] (boost::arg<6>) const { return base_type::a6_; }
  471. A7 operator[] (boost::arg<7>) const { return base_type::a7_; }
  472. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  473. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  474. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  475. A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; }
  476. A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; }
  477. A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; }
  478. A7 operator[] (boost::arg<7> (*) ()) const { return base_type::a7_; }
  479. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  480. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  481. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  482. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  483. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  484. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  485. {
  486. return unwrapper<F>::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_]);
  487. }
  488. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  489. {
  490. return unwrapper<F const>::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_]);
  491. }
  492. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  493. {
  494. unwrapper<F>::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_]);
  495. }
  496. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  497. {
  498. unwrapper<F const>::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_]);
  499. }
  500. template<class V> void accept(V & v) const
  501. {
  502. base_type::accept(v);
  503. }
  504. bool operator==(list7 const & rhs) const
  505. {
  506. return
  507. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  508. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  509. ref_compare( base_type::a3_, rhs.a3_, 0 ) &&
  510. ref_compare( base_type::a4_, rhs.a4_, 0 ) &&
  511. ref_compare( base_type::a5_, rhs.a5_, 0 ) &&
  512. ref_compare( base_type::a6_, rhs.a6_, 0 ) &&
  513. ref_compare( base_type::a7_, rhs.a7_, 0 );
  514. }
  515. };
  516. 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 >
  517. {
  518. private:
  519. typedef storage8< A1, A2, A3, A4, A5, A6, A7, A8 > base_type;
  520. public:
  521. 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 ) {}
  522. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  523. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  524. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  525. A4 operator[] (boost::arg<4>) const { return base_type::a4_; }
  526. A5 operator[] (boost::arg<5>) const { return base_type::a5_; }
  527. A6 operator[] (boost::arg<6>) const { return base_type::a6_; }
  528. A7 operator[] (boost::arg<7>) const { return base_type::a7_; }
  529. A8 operator[] (boost::arg<8>) const { return base_type::a8_; }
  530. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  531. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  532. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  533. A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; }
  534. A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; }
  535. A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; }
  536. A7 operator[] (boost::arg<7> (*) ()) const { return base_type::a7_; }
  537. A8 operator[] (boost::arg<8> (*) ()) const { return base_type::a8_; }
  538. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  539. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  540. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  541. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  542. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  543. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  544. {
  545. return unwrapper<F>::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_]);
  546. }
  547. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  548. {
  549. return unwrapper<F const>::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_]);
  550. }
  551. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  552. {
  553. unwrapper<F>::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_]);
  554. }
  555. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  556. {
  557. unwrapper<F const>::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_]);
  558. }
  559. template<class V> void accept(V & v) const
  560. {
  561. base_type::accept(v);
  562. }
  563. bool operator==(list8 const & rhs) const
  564. {
  565. return
  566. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  567. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  568. ref_compare( base_type::a3_, rhs.a3_, 0 ) &&
  569. ref_compare( base_type::a4_, rhs.a4_, 0 ) &&
  570. ref_compare( base_type::a5_, rhs.a5_, 0 ) &&
  571. ref_compare( base_type::a6_, rhs.a6_, 0 ) &&
  572. ref_compare( base_type::a7_, rhs.a7_, 0 ) &&
  573. ref_compare( base_type::a8_, rhs.a8_, 0 );
  574. }
  575. };
  576. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9> class list9: private storage9< A1, A2, A3, A4, A5, A6, A7, A8, A9 >
  577. {
  578. private:
  579. typedef storage9< A1, A2, A3, A4, A5, A6, A7, A8, A9 > base_type;
  580. public:
  581. 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 ) {}
  582. A1 operator[] (boost::arg<1>) const { return base_type::a1_; }
  583. A2 operator[] (boost::arg<2>) const { return base_type::a2_; }
  584. A3 operator[] (boost::arg<3>) const { return base_type::a3_; }
  585. A4 operator[] (boost::arg<4>) const { return base_type::a4_; }
  586. A5 operator[] (boost::arg<5>) const { return base_type::a5_; }
  587. A6 operator[] (boost::arg<6>) const { return base_type::a6_; }
  588. A7 operator[] (boost::arg<7>) const { return base_type::a7_; }
  589. A8 operator[] (boost::arg<8>) const { return base_type::a8_; }
  590. A9 operator[] (boost::arg<9>) const { return base_type::a9_; }
  591. A1 operator[] (boost::arg<1> (*) ()) const { return base_type::a1_; }
  592. A2 operator[] (boost::arg<2> (*) ()) const { return base_type::a2_; }
  593. A3 operator[] (boost::arg<3> (*) ()) const { return base_type::a3_; }
  594. A4 operator[] (boost::arg<4> (*) ()) const { return base_type::a4_; }
  595. A5 operator[] (boost::arg<5> (*) ()) const { return base_type::a5_; }
  596. A6 operator[] (boost::arg<6> (*) ()) const { return base_type::a6_; }
  597. A7 operator[] (boost::arg<7> (*) ()) const { return base_type::a7_; }
  598. A8 operator[] (boost::arg<8> (*) ()) const { return base_type::a8_; }
  599. A9 operator[] (boost::arg<9> (*) ()) const { return base_type::a9_; }
  600. template<class T> T & operator[] (_bi::value<T> & v) const { return v.get(); }
  601. template<class T> T const & operator[] (_bi::value<T> const & v) const { return v.get(); }
  602. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  603. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  604. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  605. template<class R, class F, class A> R operator()(type<R>, F & f, A & a, long)
  606. {
  607. return unwrapper<F>::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_]);
  608. }
  609. template<class R, class F, class A> R operator()(type<R>, F const & f, A & a, long) const
  610. {
  611. return unwrapper<F const>::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_]);
  612. }
  613. template<class F, class A> void operator()(type<void>, F & f, A & a, int)
  614. {
  615. unwrapper<F>::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_]);
  616. }
  617. template<class F, class A> void operator()(type<void>, F const & f, A & a, int) const
  618. {
  619. unwrapper<F const>::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_]);
  620. }
  621. template<class V> void accept(V & v) const
  622. {
  623. base_type::accept(v);
  624. }
  625. bool operator==(list9 const & rhs) const
  626. {
  627. return
  628. ref_compare( base_type::a1_, rhs.a1_, 0 ) &&
  629. ref_compare( base_type::a2_, rhs.a2_, 0 ) &&
  630. ref_compare( base_type::a3_, rhs.a3_, 0 ) &&
  631. ref_compare( base_type::a4_, rhs.a4_, 0 ) &&
  632. ref_compare( base_type::a5_, rhs.a5_, 0 ) &&
  633. ref_compare( base_type::a6_, rhs.a6_, 0 ) &&
  634. ref_compare( base_type::a7_, rhs.a7_, 0 ) &&
  635. ref_compare( base_type::a8_, rhs.a8_, 0 ) &&
  636. ref_compare( base_type::a9_, rhs.a9_, 0 );
  637. }
  638. };
  639. #ifdef BOOST_MSVC
  640. #pragma warning(pop)
  641. #endif
  642. // bind_t
  643. #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
  644. template< class A1 > class rrlist1
  645. {
  646. private:
  647. A1 & a1_; // not A1&& because of msvc-10.0
  648. public:
  649. explicit rrlist1( A1 & a1 ): a1_( a1 ) {}
  650. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); } // not static_cast because of g++ 4.9
  651. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  652. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  653. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  654. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  655. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  656. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  657. };
  658. template< class A1, class A2 > class rrlist2
  659. {
  660. private:
  661. A1 & a1_;
  662. A2 & a2_;
  663. public:
  664. rrlist2( A1 & a1, A2 & a2 ): a1_( a1 ), a2_( a2 ) {}
  665. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  666. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  667. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  668. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  669. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  670. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  671. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  672. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  673. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  674. };
  675. template< class A1, class A2, class A3 > class rrlist3
  676. {
  677. private:
  678. A1 & a1_;
  679. A2 & a2_;
  680. A3 & a3_;
  681. public:
  682. rrlist3( A1 & a1, A2 & a2, A3 & a3 ): a1_( a1 ), a2_( a2 ), a3_( a3 ) {}
  683. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  684. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  685. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  686. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  687. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  688. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  689. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  690. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  691. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  692. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  693. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  694. };
  695. template< class A1, class A2, class A3, class A4 > class rrlist4
  696. {
  697. private:
  698. A1 & a1_;
  699. A2 & a2_;
  700. A3 & a3_;
  701. A4 & a4_;
  702. public:
  703. rrlist4( A1 & a1, A2 & a2, A3 & a3, A4 & a4 ): a1_( a1 ), a2_( a2 ), a3_( a3 ), a4_( a4 ) {}
  704. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  705. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  706. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  707. A4 && operator[] (boost::arg<4>) const { return std::forward<A4>( a4_ ); }
  708. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  709. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  710. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  711. A4 && operator[] (boost::arg<4> (*) ()) const { return std::forward<A4>( a4_ ); }
  712. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  713. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  714. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  715. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  716. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  717. };
  718. template< class A1, class A2, class A3, class A4, class A5 > class rrlist5
  719. {
  720. private:
  721. A1 & a1_;
  722. A2 & a2_;
  723. A3 & a3_;
  724. A4 & a4_;
  725. A5 & a5_;
  726. public:
  727. rrlist5( A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5 ): a1_( a1 ), a2_( a2 ), a3_( a3 ), a4_( a4 ), a5_( a5 ) {}
  728. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  729. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  730. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  731. A4 && operator[] (boost::arg<4>) const { return std::forward<A4>( a4_ ); }
  732. A5 && operator[] (boost::arg<5>) const { return std::forward<A5>( a5_ ); }
  733. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  734. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  735. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  736. A4 && operator[] (boost::arg<4> (*) ()) const { return std::forward<A4>( a4_ ); }
  737. A5 && operator[] (boost::arg<5> (*) ()) const { return std::forward<A5>( a5_ ); }
  738. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  739. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  740. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  741. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  742. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  743. };
  744. template< class A1, class A2, class A3, class A4, class A5, class A6 > class rrlist6
  745. {
  746. private:
  747. A1 & a1_;
  748. A2 & a2_;
  749. A3 & a3_;
  750. A4 & a4_;
  751. A5 & a5_;
  752. A6 & a6_;
  753. public:
  754. rrlist6( A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6 ): a1_( a1 ), a2_( a2 ), a3_( a3 ), a4_( a4 ), a5_( a5 ), a6_( a6 ) {}
  755. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  756. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  757. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  758. A4 && operator[] (boost::arg<4>) const { return std::forward<A4>( a4_ ); }
  759. A5 && operator[] (boost::arg<5>) const { return std::forward<A5>( a5_ ); }
  760. A6 && operator[] (boost::arg<6>) const { return std::forward<A6>( a6_ ); }
  761. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  762. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  763. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  764. A4 && operator[] (boost::arg<4> (*) ()) const { return std::forward<A4>( a4_ ); }
  765. A5 && operator[] (boost::arg<5> (*) ()) const { return std::forward<A5>( a5_ ); }
  766. A6 && operator[] (boost::arg<6> (*) ()) const { return std::forward<A6>( a6_ ); }
  767. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  768. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  769. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  770. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  771. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  772. };
  773. template< class A1, class A2, class A3, class A4, class A5, class A6, class A7 > class rrlist7
  774. {
  775. private:
  776. A1 & a1_;
  777. A2 & a2_;
  778. A3 & a3_;
  779. A4 & a4_;
  780. A5 & a5_;
  781. A6 & a6_;
  782. A7 & a7_;
  783. public:
  784. rrlist7( A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7 ): a1_( a1 ), a2_( a2 ), a3_( a3 ), a4_( a4 ), a5_( a5 ), a6_( a6 ), a7_( a7 ) {}
  785. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  786. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  787. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  788. A4 && operator[] (boost::arg<4>) const { return std::forward<A4>( a4_ ); }
  789. A5 && operator[] (boost::arg<5>) const { return std::forward<A5>( a5_ ); }
  790. A6 && operator[] (boost::arg<6>) const { return std::forward<A6>( a6_ ); }
  791. A7 && operator[] (boost::arg<7>) const { return std::forward<A7>( a7_ ); }
  792. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  793. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  794. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  795. A4 && operator[] (boost::arg<4> (*) ()) const { return std::forward<A4>( a4_ ); }
  796. A5 && operator[] (boost::arg<5> (*) ()) const { return std::forward<A5>( a5_ ); }
  797. A6 && operator[] (boost::arg<6> (*) ()) const { return std::forward<A6>( a6_ ); }
  798. A7 && operator[] (boost::arg<7> (*) ()) const { return std::forward<A7>( a7_ ); }
  799. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  800. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  801. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  802. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  803. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  804. };
  805. template< class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8 > class rrlist8
  806. {
  807. private:
  808. A1 & a1_;
  809. A2 & a2_;
  810. A3 & a3_;
  811. A4 & a4_;
  812. A5 & a5_;
  813. A6 & a6_;
  814. A7 & a7_;
  815. A8 & a8_;
  816. public:
  817. rrlist8( A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7, A8 & a8 ): a1_( a1 ), a2_( a2 ), a3_( a3 ), a4_( a4 ), a5_( a5 ), a6_( a6 ), a7_( a7 ), a8_( a8 ) {}
  818. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  819. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  820. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  821. A4 && operator[] (boost::arg<4>) const { return std::forward<A4>( a4_ ); }
  822. A5 && operator[] (boost::arg<5>) const { return std::forward<A5>( a5_ ); }
  823. A6 && operator[] (boost::arg<6>) const { return std::forward<A6>( a6_ ); }
  824. A7 && operator[] (boost::arg<7>) const { return std::forward<A7>( a7_ ); }
  825. A8 && operator[] (boost::arg<8>) const { return std::forward<A8>( a8_ ); }
  826. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  827. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  828. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  829. A4 && operator[] (boost::arg<4> (*) ()) const { return std::forward<A4>( a4_ ); }
  830. A5 && operator[] (boost::arg<5> (*) ()) const { return std::forward<A5>( a5_ ); }
  831. A6 && operator[] (boost::arg<6> (*) ()) const { return std::forward<A6>( a6_ ); }
  832. A7 && operator[] (boost::arg<7> (*) ()) const { return std::forward<A7>( a7_ ); }
  833. A8 && operator[] (boost::arg<8> (*) ()) const { return std::forward<A8>( a8_ ); }
  834. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  835. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  836. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  837. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  838. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  839. };
  840. template< class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9 > class rrlist9
  841. {
  842. private:
  843. A1 & a1_;
  844. A2 & a2_;
  845. A3 & a3_;
  846. A4 & a4_;
  847. A5 & a5_;
  848. A6 & a6_;
  849. A7 & a7_;
  850. A8 & a8_;
  851. A9 & a9_;
  852. public:
  853. rrlist9( A1 & a1, A2 & a2, A3 & a3, A4 & a4, A5 & a5, A6 & a6, A7 & a7, A8 & a8, A9 & a9 ): a1_( a1 ), a2_( a2 ), a3_( a3 ), a4_( a4 ), a5_( a5 ), a6_( a6 ), a7_( a7 ), a8_( a8 ), a9_( a9 ) {}
  854. A1 && operator[] (boost::arg<1>) const { return std::forward<A1>( a1_ ); }
  855. A2 && operator[] (boost::arg<2>) const { return std::forward<A2>( a2_ ); }
  856. A3 && operator[] (boost::arg<3>) const { return std::forward<A3>( a3_ ); }
  857. A4 && operator[] (boost::arg<4>) const { return std::forward<A4>( a4_ ); }
  858. A5 && operator[] (boost::arg<5>) const { return std::forward<A5>( a5_ ); }
  859. A6 && operator[] (boost::arg<6>) const { return std::forward<A6>( a6_ ); }
  860. A7 && operator[] (boost::arg<7>) const { return std::forward<A7>( a7_ ); }
  861. A8 && operator[] (boost::arg<8>) const { return std::forward<A8>( a8_ ); }
  862. A9 && operator[] (boost::arg<9>) const { return std::forward<A9>( a9_ ); }
  863. A1 && operator[] (boost::arg<1> (*) ()) const { return std::forward<A1>( a1_ ); }
  864. A2 && operator[] (boost::arg<2> (*) ()) const { return std::forward<A2>( a2_ ); }
  865. A3 && operator[] (boost::arg<3> (*) ()) const { return std::forward<A3>( a3_ ); }
  866. A4 && operator[] (boost::arg<4> (*) ()) const { return std::forward<A4>( a4_ ); }
  867. A5 && operator[] (boost::arg<5> (*) ()) const { return std::forward<A5>( a5_ ); }
  868. A6 && operator[] (boost::arg<6> (*) ()) const { return std::forward<A6>( a6_ ); }
  869. A7 && operator[] (boost::arg<7> (*) ()) const { return std::forward<A7>( a7_ ); }
  870. A8 && operator[] (boost::arg<8> (*) ()) const { return std::forward<A8>( a8_ ); }
  871. A9 && operator[] (boost::arg<9> (*) ()) const { return std::forward<A9>( a9_ ); }
  872. template<class T> T & operator[] ( _bi::value<T> & v ) const { return v.get(); }
  873. template<class T> T const & operator[] ( _bi::value<T> const & v ) const { return v.get(); }
  874. template<class T> T & operator[] (reference_wrapper<T> const & v) const { return v.get(); }
  875. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> & b) const { return b.eval(*this); }
  876. template<class R, class F, class L> typename result_traits<R, F>::type operator[] (bind_t<R, F, L> const & b) const { return b.eval(*this); }
  877. };
  878. template<class R, class F, class L> class bind_t
  879. {
  880. private:
  881. F f_;
  882. L l_;
  883. public:
  884. typedef typename result_traits<R, F>::type result_type;
  885. typedef bind_t this_type;
  886. bind_t( F f, L const & l ): f_( f ), l_( l ) {}
  887. //
  888. result_type operator()()
  889. {
  890. list0 a;
  891. return l_( type<result_type>(), f_, a, 0 );
  892. }
  893. result_type operator()() const
  894. {
  895. list0 a;
  896. return l_( type<result_type>(), f_, a, 0 );
  897. }
  898. template<class A1> result_type operator()( A1 && a1 )
  899. {
  900. rrlist1< A1 > a( a1 );
  901. return l_( type<result_type>(), f_, a, 0 );
  902. }
  903. template<class A1> result_type operator()( A1 && a1 ) const
  904. {
  905. rrlist1< A1 > a( a1 );
  906. return l_(type<result_type>(), f_, a, 0);
  907. }
  908. template<class A1, class A2> result_type operator()( A1 && a1, A2 && a2 )
  909. {
  910. rrlist2< A1, A2 > a( a1, a2 );
  911. return l_( type<result_type>(), f_, a, 0 );
  912. }
  913. template<class A1, class A2> result_type operator()( A1 && a1, A2 && a2 ) const
  914. {
  915. rrlist2< A1, A2 > a( a1, a2 );
  916. return l_( type<result_type>(), f_, a, 0 );
  917. }
  918. template<class A1, class A2, class A3> result_type operator()( A1 && a1, A2 && a2, A3 && a3 )
  919. {
  920. rrlist3< A1, A2, A3 > a( a1, a2, a3 );
  921. return l_( type<result_type>(), f_, a, 0 );
  922. }
  923. template<class A1, class A2, class A3> result_type operator()( A1 && a1, A2 && a2, A3 && a3 ) const
  924. {
  925. rrlist3< A1, A2, A3 > a( a1, a2, a3 );
  926. return l_( type<result_type>(), f_, a, 0 );
  927. }
  928. template<class A1, class A2, class A3, class A4> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4 )
  929. {
  930. rrlist4< A1, A2, A3, A4 > a( a1, a2, a3, a4 );
  931. return l_( type<result_type>(), f_, a, 0 );
  932. }
  933. template<class A1, class A2, class A3, class A4> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4 ) const
  934. {
  935. rrlist4< A1, A2, A3, A4 > a( a1, a2, a3, a4 );
  936. return l_( type<result_type>(), f_, a, 0 );
  937. }
  938. template<class A1, class A2, class A3, class A4, class A5> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5 )
  939. {
  940. rrlist5< A1, A2, A3, A4, A5 > a( a1, a2, a3, a4, a5 );
  941. return l_( type<result_type>(), f_, a, 0 );
  942. }
  943. template<class A1, class A2, class A3, class A4, class A5> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5 ) const
  944. {
  945. rrlist5< A1, A2, A3, A4, A5 > a( a1, a2, a3, a4, a5 );
  946. return l_( type<result_type>(), f_, a, 0 );
  947. }
  948. template<class A1, class A2, class A3, class A4, class A5, class A6> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6 )
  949. {
  950. rrlist6< A1, A2, A3, A4, A5, A6 > a( a1, a2, a3, a4, a5, a6 );
  951. return l_( type<result_type>(), f_, a, 0 );
  952. }
  953. template<class A1, class A2, class A3, class A4, class A5, class A6> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6 ) const
  954. {
  955. rrlist6< A1, A2, A3, A4, A5, A6 > a( a1, a2, a3, a4, a5, a6 );
  956. return l_( type<result_type>(), f_, a, 0 );
  957. }
  958. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6, A7 && a7 )
  959. {
  960. rrlist7< A1, A2, A3, A4, A5, A6, A7 > a( a1, a2, a3, a4, a5, a6, a7 );
  961. return l_( type<result_type>(), f_, a, 0 );
  962. }
  963. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6, A7 && a7 ) const
  964. {
  965. rrlist7< A1, A2, A3, A4, A5, A6, A7 > a( a1, a2, a3, a4, a5, a6, a7 );
  966. return l_( type<result_type>(), f_, a, 0 );
  967. }
  968. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6, A7 && a7, A8 && a8 )
  969. {
  970. rrlist8< A1, A2, A3, A4, A5, A6, A7, A8 > a( a1, a2, a3, a4, a5, a6, a7, a8 );
  971. return l_( type<result_type>(), f_, a, 0 );
  972. }
  973. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6, A7 && a7, A8 && a8 ) const
  974. {
  975. rrlist8< A1, A2, A3, A4, A5, A6, A7, A8 > a( a1, a2, a3, a4, a5, a6, a7, a8 );
  976. return l_( type<result_type>(), f_, a, 0 );
  977. }
  978. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6, A7 && a7, A8 && a8, A9 && a9 )
  979. {
  980. rrlist9< A1, A2, A3, A4, A5, A6, A7, A8, A9 > a( a1, a2, a3, a4, a5, a6, a7, a8, a9 );
  981. return l_( type<result_type>(), f_, a, 0 );
  982. }
  983. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9> result_type operator()( A1 && a1, A2 && a2, A3 && a3, A4 && a4, A5 && a5, A6 && a6, A7 && a7, A8 && a8, A9 && a9 ) const
  984. {
  985. rrlist9< A1, A2, A3, A4, A5, A6, A7, A8, A9 > a( a1, a2, a3, a4, a5, a6, a7, a8, a9 );
  986. return l_( type<result_type>(), f_, a, 0 );
  987. }
  988. //
  989. template<class A> result_type eval( A & a )
  990. {
  991. return l_( type<result_type>(), f_, a, 0 );
  992. }
  993. template<class A> result_type eval( A & a ) const
  994. {
  995. return l_( type<result_type>(), f_, a, 0 );
  996. }
  997. template<class V> void accept( V & v ) const
  998. {
  999. #if !defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) && !defined( __BORLANDC__ )
  1000. using boost::visit_each;
  1001. #endif
  1002. BOOST_BIND_VISIT_EACH( v, f_, 0 );
  1003. l_.accept( v );
  1004. }
  1005. bool compare( this_type const & rhs ) const
  1006. {
  1007. return ref_compare( f_, rhs.f_, 0 ) && l_ == rhs.l_;
  1008. }
  1009. };
  1010. #elif !defined( BOOST_NO_VOID_RETURNS )
  1011. template<class R, class F, class L> class bind_t
  1012. {
  1013. public:
  1014. typedef bind_t this_type;
  1015. bind_t(F f, L const & l): f_(f), l_(l) {}
  1016. #define BOOST_BIND_RETURN return
  1017. #include <boost/bind/bind_template.hpp>
  1018. #undef BOOST_BIND_RETURN
  1019. };
  1020. #else // no void returns
  1021. template<class R> struct bind_t_generator
  1022. {
  1023. template<class F, class L> class implementation
  1024. {
  1025. public:
  1026. typedef implementation this_type;
  1027. implementation(F f, L const & l): f_(f), l_(l) {}
  1028. #define BOOST_BIND_RETURN return
  1029. #include <boost/bind/bind_template.hpp>
  1030. #undef BOOST_BIND_RETURN
  1031. };
  1032. };
  1033. template<> struct bind_t_generator<void>
  1034. {
  1035. template<class F, class L> class implementation
  1036. {
  1037. private:
  1038. typedef void R;
  1039. public:
  1040. typedef implementation this_type;
  1041. implementation(F f, L const & l): f_(f), l_(l) {}
  1042. #define BOOST_BIND_RETURN
  1043. #include <boost/bind/bind_template.hpp>
  1044. #undef BOOST_BIND_RETURN
  1045. };
  1046. };
  1047. template<class R2, class F, class L> class bind_t: public bind_t_generator<R2>::BOOST_NESTED_TEMPLATE implementation<F, L>
  1048. {
  1049. public:
  1050. bind_t(F f, L const & l): bind_t_generator<R2>::BOOST_NESTED_TEMPLATE implementation<F, L>(f, l) {}
  1051. };
  1052. #endif
  1053. // function_equal
  1054. #ifndef BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
  1055. // put overloads in _bi, rely on ADL
  1056. # ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  1057. template<class R, class F, class L> bool function_equal( bind_t<R, F, L> const & a, bind_t<R, F, L> const & b )
  1058. {
  1059. return a.compare(b);
  1060. }
  1061. # else
  1062. template<class R, class F, class L> bool function_equal_impl( bind_t<R, F, L> const & a, bind_t<R, F, L> const & b, int )
  1063. {
  1064. return a.compare(b);
  1065. }
  1066. # endif // #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  1067. #else // BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
  1068. // put overloads in boost
  1069. } // namespace _bi
  1070. # ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  1071. template<class R, class F, class L> bool function_equal( _bi::bind_t<R, F, L> const & a, _bi::bind_t<R, F, L> const & b )
  1072. {
  1073. return a.compare(b);
  1074. }
  1075. # else
  1076. template<class R, class F, class L> bool function_equal_impl( _bi::bind_t<R, F, L> const & a, _bi::bind_t<R, F, L> const & b, int )
  1077. {
  1078. return a.compare(b);
  1079. }
  1080. # endif // #ifndef BOOST_NO_FUNCTION_TEMPLATE_ORDERING
  1081. namespace _bi
  1082. {
  1083. #endif // BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP
  1084. // add_value
  1085. #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || (__SUNPRO_CC >= 0x530)
  1086. #if defined( __BORLANDC__ ) && BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT(0x582) )
  1087. template<class T> struct add_value
  1088. {
  1089. typedef _bi::value<T> type;
  1090. };
  1091. #else
  1092. template< class T, int I > struct add_value_2
  1093. {
  1094. typedef boost::arg<I> type;
  1095. };
  1096. template< class T > struct add_value_2< T, 0 >
  1097. {
  1098. typedef _bi::value< T > type;
  1099. };
  1100. template<class T> struct add_value
  1101. {
  1102. typedef typename add_value_2< T, boost::is_placeholder< T >::value >::type type;
  1103. };
  1104. #endif
  1105. template<class T> struct add_value< value<T> >
  1106. {
  1107. typedef _bi::value<T> type;
  1108. };
  1109. template<class T> struct add_value< reference_wrapper<T> >
  1110. {
  1111. typedef reference_wrapper<T> type;
  1112. };
  1113. template<int I> struct add_value< arg<I> >
  1114. {
  1115. typedef boost::arg<I> type;
  1116. };
  1117. template<int I> struct add_value< arg<I> (*) () >
  1118. {
  1119. typedef boost::arg<I> (*type) ();
  1120. };
  1121. template<class R, class F, class L> struct add_value< bind_t<R, F, L> >
  1122. {
  1123. typedef bind_t<R, F, L> type;
  1124. };
  1125. #else
  1126. template<int I> struct _avt_0;
  1127. template<> struct _avt_0<1>
  1128. {
  1129. template<class T> struct inner
  1130. {
  1131. typedef T type;
  1132. };
  1133. };
  1134. template<> struct _avt_0<2>
  1135. {
  1136. template<class T> struct inner
  1137. {
  1138. typedef value<T> type;
  1139. };
  1140. };
  1141. typedef char (&_avt_r1) [1];
  1142. typedef char (&_avt_r2) [2];
  1143. template<class T> _avt_r1 _avt_f(value<T>);
  1144. template<class T> _avt_r1 _avt_f(reference_wrapper<T>);
  1145. template<int I> _avt_r1 _avt_f(arg<I>);
  1146. template<int I> _avt_r1 _avt_f(arg<I> (*) ());
  1147. template<class R, class F, class L> _avt_r1 _avt_f(bind_t<R, F, L>);
  1148. _avt_r2 _avt_f(...);
  1149. template<class T> struct add_value
  1150. {
  1151. static T t();
  1152. typedef typename _avt_0<sizeof(_avt_f(t()))>::template inner<T>::type type;
  1153. };
  1154. #endif
  1155. // list_av_N
  1156. template<class A1> struct list_av_1
  1157. {
  1158. typedef typename add_value<A1>::type B1;
  1159. typedef list1<B1> type;
  1160. };
  1161. template<class A1, class A2> struct list_av_2
  1162. {
  1163. typedef typename add_value<A1>::type B1;
  1164. typedef typename add_value<A2>::type B2;
  1165. typedef list2<B1, B2> type;
  1166. };
  1167. template<class A1, class A2, class A3> struct list_av_3
  1168. {
  1169. typedef typename add_value<A1>::type B1;
  1170. typedef typename add_value<A2>::type B2;
  1171. typedef typename add_value<A3>::type B3;
  1172. typedef list3<B1, B2, B3> type;
  1173. };
  1174. template<class A1, class A2, class A3, class A4> struct list_av_4
  1175. {
  1176. typedef typename add_value<A1>::type B1;
  1177. typedef typename add_value<A2>::type B2;
  1178. typedef typename add_value<A3>::type B3;
  1179. typedef typename add_value<A4>::type B4;
  1180. typedef list4<B1, B2, B3, B4> type;
  1181. };
  1182. template<class A1, class A2, class A3, class A4, class A5> struct list_av_5
  1183. {
  1184. typedef typename add_value<A1>::type B1;
  1185. typedef typename add_value<A2>::type B2;
  1186. typedef typename add_value<A3>::type B3;
  1187. typedef typename add_value<A4>::type B4;
  1188. typedef typename add_value<A5>::type B5;
  1189. typedef list5<B1, B2, B3, B4, B5> type;
  1190. };
  1191. template<class A1, class A2, class A3, class A4, class A5, class A6> struct list_av_6
  1192. {
  1193. typedef typename add_value<A1>::type B1;
  1194. typedef typename add_value<A2>::type B2;
  1195. typedef typename add_value<A3>::type B3;
  1196. typedef typename add_value<A4>::type B4;
  1197. typedef typename add_value<A5>::type B5;
  1198. typedef typename add_value<A6>::type B6;
  1199. typedef list6<B1, B2, B3, B4, B5, B6> type;
  1200. };
  1201. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7> struct list_av_7
  1202. {
  1203. typedef typename add_value<A1>::type B1;
  1204. typedef typename add_value<A2>::type B2;
  1205. typedef typename add_value<A3>::type B3;
  1206. typedef typename add_value<A4>::type B4;
  1207. typedef typename add_value<A5>::type B5;
  1208. typedef typename add_value<A6>::type B6;
  1209. typedef typename add_value<A7>::type B7;
  1210. typedef list7<B1, B2, B3, B4, B5, B6, B7> type;
  1211. };
  1212. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8> struct list_av_8
  1213. {
  1214. typedef typename add_value<A1>::type B1;
  1215. typedef typename add_value<A2>::type B2;
  1216. typedef typename add_value<A3>::type B3;
  1217. typedef typename add_value<A4>::type B4;
  1218. typedef typename add_value<A5>::type B5;
  1219. typedef typename add_value<A6>::type B6;
  1220. typedef typename add_value<A7>::type B7;
  1221. typedef typename add_value<A8>::type B8;
  1222. typedef list8<B1, B2, B3, B4, B5, B6, B7, B8> type;
  1223. };
  1224. template<class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9> struct list_av_9
  1225. {
  1226. typedef typename add_value<A1>::type B1;
  1227. typedef typename add_value<A2>::type B2;
  1228. typedef typename add_value<A3>::type B3;
  1229. typedef typename add_value<A4>::type B4;
  1230. typedef typename add_value<A5>::type B5;
  1231. typedef typename add_value<A6>::type B6;
  1232. typedef typename add_value<A7>::type B7;
  1233. typedef typename add_value<A8>::type B8;
  1234. typedef typename add_value<A9>::type B9;
  1235. typedef list9<B1, B2, B3, B4, B5, B6, B7, B8, B9> type;
  1236. };
  1237. // operator!
  1238. struct logical_not
  1239. {
  1240. template<class V> bool operator()(V const & v) const { return !v; }
  1241. };
  1242. template<class R, class F, class L>
  1243. bind_t< bool, logical_not, list1< bind_t<R, F, L> > >
  1244. operator! (bind_t<R, F, L> const & f)
  1245. {
  1246. typedef list1< bind_t<R, F, L> > list_type;
  1247. return bind_t<bool, logical_not, list_type> ( logical_not(), list_type(f) );
  1248. }
  1249. // relational operators
  1250. #define BOOST_BIND_OPERATOR( op, name ) \
  1251. \
  1252. struct name \
  1253. { \
  1254. template<class V, class W> bool operator()(V const & v, W const & w) const { return v op w; } \
  1255. }; \
  1256. \
  1257. template<class R, class F, class L, class A2> \
  1258. bind_t< bool, name, list2< bind_t<R, F, L>, typename add_value<A2>::type > > \
  1259. operator op (bind_t<R, F, L> const & f, A2 a2) \
  1260. { \
  1261. typedef typename add_value<A2>::type B2; \
  1262. typedef list2< bind_t<R, F, L>, B2> list_type; \
  1263. return bind_t<bool, name, list_type> ( name(), list_type(f, a2) ); \
  1264. }
  1265. BOOST_BIND_OPERATOR( ==, equal )
  1266. BOOST_BIND_OPERATOR( !=, not_equal )
  1267. BOOST_BIND_OPERATOR( <, less )
  1268. BOOST_BIND_OPERATOR( <=, less_equal )
  1269. BOOST_BIND_OPERATOR( >, greater )
  1270. BOOST_BIND_OPERATOR( >=, greater_equal )
  1271. BOOST_BIND_OPERATOR( &&, logical_and )
  1272. BOOST_BIND_OPERATOR( ||, logical_or )
  1273. #undef BOOST_BIND_OPERATOR
  1274. #if defined(__GNUC__) && BOOST_WORKAROUND(__GNUC__, < 3)
  1275. // resolve ambiguity with rel_ops
  1276. #define BOOST_BIND_OPERATOR( op, name ) \
  1277. \
  1278. template<class R, class F, class L> \
  1279. bind_t< bool, name, list2< bind_t<R, F, L>, bind_t<R, F, L> > > \
  1280. operator op (bind_t<R, F, L> const & f, bind_t<R, F, L> const & g) \
  1281. { \
  1282. typedef list2< bind_t<R, F, L>, bind_t<R, F, L> > list_type; \
  1283. return bind_t<bool, name, list_type> ( name(), list_type(f, g) ); \
  1284. }
  1285. BOOST_BIND_OPERATOR( !=, not_equal )
  1286. BOOST_BIND_OPERATOR( <=, less_equal )
  1287. BOOST_BIND_OPERATOR( >, greater )
  1288. BOOST_BIND_OPERATOR( >=, greater_equal )
  1289. #endif
  1290. // visit_each, ADL
  1291. #if !defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) && !defined( __BORLANDC__ ) \
  1292. && !(defined(__GNUC__) && __GNUC__ == 3 && __GNUC_MINOR__ <= 3)
  1293. template<class V, class T> void visit_each( V & v, value<T> const & t, int )
  1294. {
  1295. using boost::visit_each;
  1296. BOOST_BIND_VISIT_EACH( v, t.get(), 0 );
  1297. }
  1298. template<class V, class R, class F, class L> void visit_each( V & v, bind_t<R, F, L> const & t, int )
  1299. {
  1300. t.accept( v );
  1301. }
  1302. #endif
  1303. } // namespace _bi
  1304. // visit_each, no ADL
  1305. #if defined( BOOST_NO_ARGUMENT_DEPENDENT_LOOKUP ) || defined( __BORLANDC__ ) \
  1306. || (defined(__GNUC__) && __GNUC__ == 3 && __GNUC_MINOR__ <= 3)
  1307. template<class V, class T> void visit_each( V & v, _bi::value<T> const & t, int )
  1308. {
  1309. BOOST_BIND_VISIT_EACH( v, t.get(), 0 );
  1310. }
  1311. template<class V, class R, class F, class L> void visit_each( V & v, _bi::bind_t<R, F, L> const & t, int )
  1312. {
  1313. t.accept( v );
  1314. }
  1315. #endif
  1316. // is_bind_expression
  1317. template< class T > struct is_bind_expression
  1318. {
  1319. enum _vt { value = 0 };
  1320. };
  1321. #if !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
  1322. template< class R, class F, class L > struct is_bind_expression< _bi::bind_t< R, F, L > >
  1323. {
  1324. enum _vt { value = 1 };
  1325. };
  1326. #endif
  1327. // bind
  1328. #ifndef BOOST_BIND
  1329. #define BOOST_BIND bind
  1330. #endif
  1331. // generic function objects
  1332. template<class R, class F>
  1333. _bi::bind_t<R, F, _bi::list0>
  1334. BOOST_BIND(F f)
  1335. {
  1336. typedef _bi::list0 list_type;
  1337. return _bi::bind_t<R, F, list_type> (f, list_type());
  1338. }
  1339. template<class R, class F, class A1>
  1340. _bi::bind_t<R, F, typename _bi::list_av_1<A1>::type>
  1341. BOOST_BIND(F f, A1 a1)
  1342. {
  1343. typedef typename _bi::list_av_1<A1>::type list_type;
  1344. return _bi::bind_t<R, F, list_type> (f, list_type(a1));
  1345. }
  1346. template<class R, class F, class A1, class A2>
  1347. _bi::bind_t<R, F, typename _bi::list_av_2<A1, A2>::type>
  1348. BOOST_BIND(F f, A1 a1, A2 a2)
  1349. {
  1350. typedef typename _bi::list_av_2<A1, A2>::type list_type;
  1351. return _bi::bind_t<R, F, list_type> (f, list_type(a1, a2));
  1352. }
  1353. template<class R, class F, class A1, class A2, class A3>
  1354. _bi::bind_t<R, F, typename _bi::list_av_3<A1, A2, A3>::type>
  1355. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3)
  1356. {
  1357. typedef typename _bi::list_av_3<A1, A2, A3>::type list_type;
  1358. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3));
  1359. }
  1360. template<class R, class F, class A1, class A2, class A3, class A4>
  1361. _bi::bind_t<R, F, typename _bi::list_av_4<A1, A2, A3, A4>::type>
  1362. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4)
  1363. {
  1364. typedef typename _bi::list_av_4<A1, A2, A3, A4>::type list_type;
  1365. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4));
  1366. }
  1367. template<class R, class F, class A1, class A2, class A3, class A4, class A5>
  1368. _bi::bind_t<R, F, typename _bi::list_av_5<A1, A2, A3, A4, A5>::type>
  1369. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5)
  1370. {
  1371. typedef typename _bi::list_av_5<A1, A2, A3, A4, A5>::type list_type;
  1372. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5));
  1373. }
  1374. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6>
  1375. _bi::bind_t<R, F, typename _bi::list_av_6<A1, A2, A3, A4, A5, A6>::type>
  1376. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6)
  1377. {
  1378. typedef typename _bi::list_av_6<A1, A2, A3, A4, A5, A6>::type list_type;
  1379. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6));
  1380. }
  1381. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7>
  1382. _bi::bind_t<R, F, typename _bi::list_av_7<A1, A2, A3, A4, A5, A6, A7>::type>
  1383. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7)
  1384. {
  1385. typedef typename _bi::list_av_7<A1, A2, A3, A4, A5, A6, A7>::type list_type;
  1386. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7));
  1387. }
  1388. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8>
  1389. _bi::bind_t<R, F, typename _bi::list_av_8<A1, A2, A3, A4, A5, A6, A7, A8>::type>
  1390. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8)
  1391. {
  1392. typedef typename _bi::list_av_8<A1, A2, A3, A4, A5, A6, A7, A8>::type list_type;
  1393. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8));
  1394. }
  1395. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9>
  1396. _bi::bind_t<R, F, typename _bi::list_av_9<A1, A2, A3, A4, A5, A6, A7, A8, A9>::type>
  1397. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9)
  1398. {
  1399. typedef typename _bi::list_av_9<A1, A2, A3, A4, A5, A6, A7, A8, A9>::type list_type;
  1400. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8, a9));
  1401. }
  1402. // generic function objects, alternative syntax
  1403. template<class R, class F>
  1404. _bi::bind_t<R, F, _bi::list0>
  1405. BOOST_BIND(boost::type<R>, F f)
  1406. {
  1407. typedef _bi::list0 list_type;
  1408. return _bi::bind_t<R, F, list_type> (f, list_type());
  1409. }
  1410. template<class R, class F, class A1>
  1411. _bi::bind_t<R, F, typename _bi::list_av_1<A1>::type>
  1412. BOOST_BIND(boost::type<R>, F f, A1 a1)
  1413. {
  1414. typedef typename _bi::list_av_1<A1>::type list_type;
  1415. return _bi::bind_t<R, F, list_type> (f, list_type(a1));
  1416. }
  1417. template<class R, class F, class A1, class A2>
  1418. _bi::bind_t<R, F, typename _bi::list_av_2<A1, A2>::type>
  1419. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2)
  1420. {
  1421. typedef typename _bi::list_av_2<A1, A2>::type list_type;
  1422. return _bi::bind_t<R, F, list_type> (f, list_type(a1, a2));
  1423. }
  1424. template<class R, class F, class A1, class A2, class A3>
  1425. _bi::bind_t<R, F, typename _bi::list_av_3<A1, A2, A3>::type>
  1426. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3)
  1427. {
  1428. typedef typename _bi::list_av_3<A1, A2, A3>::type list_type;
  1429. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3));
  1430. }
  1431. template<class R, class F, class A1, class A2, class A3, class A4>
  1432. _bi::bind_t<R, F, typename _bi::list_av_4<A1, A2, A3, A4>::type>
  1433. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3, A4 a4)
  1434. {
  1435. typedef typename _bi::list_av_4<A1, A2, A3, A4>::type list_type;
  1436. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4));
  1437. }
  1438. template<class R, class F, class A1, class A2, class A3, class A4, class A5>
  1439. _bi::bind_t<R, F, typename _bi::list_av_5<A1, A2, A3, A4, A5>::type>
  1440. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5)
  1441. {
  1442. typedef typename _bi::list_av_5<A1, A2, A3, A4, A5>::type list_type;
  1443. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5));
  1444. }
  1445. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6>
  1446. _bi::bind_t<R, F, typename _bi::list_av_6<A1, A2, A3, A4, A5, A6>::type>
  1447. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6)
  1448. {
  1449. typedef typename _bi::list_av_6<A1, A2, A3, A4, A5, A6>::type list_type;
  1450. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6));
  1451. }
  1452. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7>
  1453. _bi::bind_t<R, F, typename _bi::list_av_7<A1, A2, A3, A4, A5, A6, A7>::type>
  1454. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7)
  1455. {
  1456. typedef typename _bi::list_av_7<A1, A2, A3, A4, A5, A6, A7>::type list_type;
  1457. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7));
  1458. }
  1459. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8>
  1460. _bi::bind_t<R, F, typename _bi::list_av_8<A1, A2, A3, A4, A5, A6, A7, A8>::type>
  1461. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8)
  1462. {
  1463. typedef typename _bi::list_av_8<A1, A2, A3, A4, A5, A6, A7, A8>::type list_type;
  1464. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8));
  1465. }
  1466. template<class R, class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9>
  1467. _bi::bind_t<R, F, typename _bi::list_av_9<A1, A2, A3, A4, A5, A6, A7, A8, A9>::type>
  1468. BOOST_BIND(boost::type<R>, F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9)
  1469. {
  1470. typedef typename _bi::list_av_9<A1, A2, A3, A4, A5, A6, A7, A8, A9>::type list_type;
  1471. return _bi::bind_t<R, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8, a9));
  1472. }
  1473. #if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
  1474. // adaptable function objects
  1475. template<class F>
  1476. _bi::bind_t<_bi::unspecified, F, _bi::list0>
  1477. BOOST_BIND(F f)
  1478. {
  1479. typedef _bi::list0 list_type;
  1480. return _bi::bind_t<_bi::unspecified, F, list_type> (f, list_type());
  1481. }
  1482. template<class F, class A1>
  1483. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_1<A1>::type>
  1484. BOOST_BIND(F f, A1 a1)
  1485. {
  1486. typedef typename _bi::list_av_1<A1>::type list_type;
  1487. return _bi::bind_t<_bi::unspecified, F, list_type> (f, list_type(a1));
  1488. }
  1489. template<class F, class A1, class A2>
  1490. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_2<A1, A2>::type>
  1491. BOOST_BIND(F f, A1 a1, A2 a2)
  1492. {
  1493. typedef typename _bi::list_av_2<A1, A2>::type list_type;
  1494. return _bi::bind_t<_bi::unspecified, F, list_type> (f, list_type(a1, a2));
  1495. }
  1496. template<class F, class A1, class A2, class A3>
  1497. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_3<A1, A2, A3>::type>
  1498. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3)
  1499. {
  1500. typedef typename _bi::list_av_3<A1, A2, A3>::type list_type;
  1501. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3));
  1502. }
  1503. template<class F, class A1, class A2, class A3, class A4>
  1504. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_4<A1, A2, A3, A4>::type>
  1505. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4)
  1506. {
  1507. typedef typename _bi::list_av_4<A1, A2, A3, A4>::type list_type;
  1508. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4));
  1509. }
  1510. template<class F, class A1, class A2, class A3, class A4, class A5>
  1511. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_5<A1, A2, A3, A4, A5>::type>
  1512. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5)
  1513. {
  1514. typedef typename _bi::list_av_5<A1, A2, A3, A4, A5>::type list_type;
  1515. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5));
  1516. }
  1517. template<class F, class A1, class A2, class A3, class A4, class A5, class A6>
  1518. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_6<A1, A2, A3, A4, A5, A6>::type>
  1519. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6)
  1520. {
  1521. typedef typename _bi::list_av_6<A1, A2, A3, A4, A5, A6>::type list_type;
  1522. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6));
  1523. }
  1524. template<class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7>
  1525. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_7<A1, A2, A3, A4, A5, A6, A7>::type>
  1526. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7)
  1527. {
  1528. typedef typename _bi::list_av_7<A1, A2, A3, A4, A5, A6, A7>::type list_type;
  1529. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7));
  1530. }
  1531. template<class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8>
  1532. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_8<A1, A2, A3, A4, A5, A6, A7, A8>::type>
  1533. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8)
  1534. {
  1535. typedef typename _bi::list_av_8<A1, A2, A3, A4, A5, A6, A7, A8>::type list_type;
  1536. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8));
  1537. }
  1538. template<class F, class A1, class A2, class A3, class A4, class A5, class A6, class A7, class A8, class A9>
  1539. _bi::bind_t<_bi::unspecified, F, typename _bi::list_av_9<A1, A2, A3, A4, A5, A6, A7, A8, A9>::type>
  1540. BOOST_BIND(F f, A1 a1, A2 a2, A3 a3, A4 a4, A5 a5, A6 a6, A7 a7, A8 a8, A9 a9)
  1541. {
  1542. typedef typename _bi::list_av_9<A1, A2, A3, A4, A5, A6, A7, A8, A9>::type list_type;
  1543. return _bi::bind_t<_bi::unspecified, F, list_type>(f, list_type(a1, a2, a3, a4, a5, a6, a7, a8, a9));
  1544. }
  1545. #endif // !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING)
  1546. // function pointers
  1547. #define BOOST_BIND_CC
  1548. #define BOOST_BIND_ST
  1549. #include <boost/bind/bind_cc.hpp>
  1550. #undef BOOST_BIND_CC
  1551. #undef BOOST_BIND_ST
  1552. #ifdef BOOST_BIND_ENABLE_STDCALL
  1553. #define BOOST_BIND_CC __stdcall
  1554. #define BOOST_BIND_ST
  1555. #include <boost/bind/bind_cc.hpp>
  1556. #undef BOOST_BIND_CC
  1557. #undef BOOST_BIND_ST
  1558. #endif
  1559. #ifdef BOOST_BIND_ENABLE_FASTCALL
  1560. #define BOOST_BIND_CC __fastcall
  1561. #define BOOST_BIND_ST
  1562. #include <boost/bind/bind_cc.hpp>
  1563. #undef BOOST_BIND_CC
  1564. #undef BOOST_BIND_ST
  1565. #endif
  1566. #ifdef BOOST_BIND_ENABLE_PASCAL
  1567. #define BOOST_BIND_ST pascal
  1568. #define BOOST_BIND_CC
  1569. #include <boost/bind/bind_cc.hpp>
  1570. #undef BOOST_BIND_ST
  1571. #undef BOOST_BIND_CC
  1572. #endif
  1573. // member function pointers
  1574. #define BOOST_BIND_MF_NAME(X) X
  1575. #define BOOST_BIND_MF_CC
  1576. #include <boost/bind/bind_mf_cc.hpp>
  1577. #include <boost/bind/bind_mf2_cc.hpp>
  1578. #undef BOOST_BIND_MF_NAME
  1579. #undef BOOST_BIND_MF_CC
  1580. #ifdef BOOST_MEM_FN_ENABLE_CDECL
  1581. #define BOOST_BIND_MF_NAME(X) X##_cdecl
  1582. #define BOOST_BIND_MF_CC __cdecl
  1583. #include <boost/bind/bind_mf_cc.hpp>
  1584. #include <boost/bind/bind_mf2_cc.hpp>
  1585. #undef BOOST_BIND_MF_NAME
  1586. #undef BOOST_BIND_MF_CC
  1587. #endif
  1588. #ifdef BOOST_MEM_FN_ENABLE_STDCALL
  1589. #define BOOST_BIND_MF_NAME(X) X##_stdcall
  1590. #define BOOST_BIND_MF_CC __stdcall
  1591. #include <boost/bind/bind_mf_cc.hpp>
  1592. #include <boost/bind/bind_mf2_cc.hpp>
  1593. #undef BOOST_BIND_MF_NAME
  1594. #undef BOOST_BIND_MF_CC
  1595. #endif
  1596. #ifdef BOOST_MEM_FN_ENABLE_FASTCALL
  1597. #define BOOST_BIND_MF_NAME(X) X##_fastcall
  1598. #define BOOST_BIND_MF_CC __fastcall
  1599. #include <boost/bind/bind_mf_cc.hpp>
  1600. #include <boost/bind/bind_mf2_cc.hpp>
  1601. #undef BOOST_BIND_MF_NAME
  1602. #undef BOOST_BIND_MF_CC
  1603. #endif
  1604. // data member pointers
  1605. #if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || defined(BOOST_NO_FUNCTION_TEMPLATE_ORDERING) \
  1606. || ( defined(__BORLANDC__) && BOOST_WORKAROUND( __BORLANDC__, BOOST_TESTED_AT( 0x620 ) ) )
  1607. template<class R, class T, class A1>
  1608. _bi::bind_t< R, _mfi::dm<R, T>, typename _bi::list_av_1<A1>::type >
  1609. BOOST_BIND(R T::*f, A1 a1)
  1610. {
  1611. typedef _mfi::dm<R, T> F;
  1612. typedef typename _bi::list_av_1<A1>::type list_type;
  1613. return _bi::bind_t<R, F, list_type>( F(f), list_type(a1) );
  1614. }
  1615. #else
  1616. namespace _bi
  1617. {
  1618. template< class Pm, int I > struct add_cref;
  1619. template< class M, class T > struct add_cref< M T::*, 0 >
  1620. {
  1621. typedef M type;
  1622. };
  1623. template< class M, class T > struct add_cref< M T::*, 1 >
  1624. {
  1625. #ifdef BOOST_MSVC
  1626. #pragma warning(push)
  1627. #pragma warning(disable:4180)
  1628. #endif
  1629. typedef M const & type;
  1630. #ifdef BOOST_MSVC
  1631. #pragma warning(pop)
  1632. #endif
  1633. };
  1634. template< class R, class T > struct add_cref< R (T::*) (), 1 >
  1635. {
  1636. typedef void type;
  1637. };
  1638. #if !defined(__IBMCPP__) || __IBMCPP_FUNC_CV_TMPL_ARG_DEDUCTION
  1639. template< class R, class T > struct add_cref< R (T::*) () const, 1 >
  1640. {
  1641. typedef void type;
  1642. };
  1643. #endif // __IBMCPP__
  1644. template<class R> struct isref
  1645. {
  1646. enum value_type { value = 0 };
  1647. };
  1648. template<class R> struct isref< R& >
  1649. {
  1650. enum value_type { value = 1 };
  1651. };
  1652. template<class R> struct isref< R* >
  1653. {
  1654. enum value_type { value = 1 };
  1655. };
  1656. template<class Pm, class A1> struct dm_result
  1657. {
  1658. typedef typename add_cref< Pm, 1 >::type type;
  1659. };
  1660. template<class Pm, class R, class F, class L> struct dm_result< Pm, bind_t<R, F, L> >
  1661. {
  1662. typedef typename bind_t<R, F, L>::result_type result_type;
  1663. typedef typename add_cref< Pm, isref< result_type >::value >::type type;
  1664. };
  1665. } // namespace _bi
  1666. template< class A1, class M, class T >
  1667. _bi::bind_t<
  1668. typename _bi::dm_result< M T::*, A1 >::type,
  1669. _mfi::dm<M, T>,
  1670. typename _bi::list_av_1<A1>::type
  1671. >
  1672. BOOST_BIND( M T::*f, A1 a1 )
  1673. {
  1674. typedef typename _bi::dm_result< M T::*, A1 >::type result_type;
  1675. typedef _mfi::dm<M, T> F;
  1676. typedef typename _bi::list_av_1<A1>::type list_type;
  1677. return _bi::bind_t< result_type, F, list_type >( F( f ), list_type( a1 ) );
  1678. }
  1679. #endif
  1680. } // namespace boost
  1681. #ifndef BOOST_BIND_NO_PLACEHOLDERS
  1682. # include <boost/bind/placeholders.hpp>
  1683. #endif
  1684. #ifdef BOOST_MSVC
  1685. # pragma warning(default: 4512) // assignment operator could not be generated
  1686. # pragma warning(pop)
  1687. #endif
  1688. #endif // #ifndef BOOST_BIND_BIND_HPP_INCLUDED