mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-03 14:54:30 +02:00
apply2 -> apply_wrap2 (see http://article.gmane.org/gmane.comp.lib.boost.devel/187573)
[SVN r52205]
This commit is contained in:
@@ -78,7 +78,7 @@ For any |Forward Sequence| ``s``, binary |Lambda Expression| ``op``, and arbitra
|
|||||||
typedef iter_fold<
|
typedef iter_fold<
|
||||||
s
|
s
|
||||||
, state
|
, state
|
||||||
, apply2< lambda<op>::type, _1, deref<_2> >
|
, apply_wrap2< lambda<op>::type, _1, deref<_2> >
|
||||||
>::type t;
|
>::type t;
|
||||||
|
|
||||||
|
|
||||||
|
@@ -85,10 +85,11 @@ and arbitrary type ``state``:
|
|||||||
|
|
||||||
.. parsed-literal::
|
.. parsed-literal::
|
||||||
|
|
||||||
|
typedef lambda<backward_op>::type op;
|
||||||
typedef reverse_iter_fold<
|
typedef reverse_iter_fold<
|
||||||
s
|
s
|
||||||
, state
|
, state
|
||||||
, apply2< lambda<backward_op>::type, _1, deref<_2> >
|
, apply_wrap2< op, _1, deref<_2> >
|
||||||
>::type t;
|
>::type t;
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user