[SVN r52205]
This commit is contained in:
Aleksey Gurtovoy
2009-04-06 02:38:36 +00:00
parent 83f2c7a600
commit 2ab6ebd29b
2 changed files with 3 additions and 2 deletions

View File

@@ -78,7 +78,7 @@ For any |Forward Sequence| ``s``, binary |Lambda Expression| ``op``, and arbitra
typedef iter_fold<
s
, state
, apply2< lambda<op>::type, _1, deref<_2> >
, apply_wrap2< lambda<op>::type, _1, deref<_2> >
>::type t;

View File

@@ -85,10 +85,11 @@ and arbitrary type ``state``:
.. parsed-literal::
typedef lambda<backward_op>::type op;
typedef reverse_iter_fold<
s
, state
, apply2< lambda<backward_op>::type, _1, deref<_2> >
, apply_wrap2< op, _1, deref<_2> >
>::type t;