[SVN r51791]
This commit is contained in:
Aleksey Gurtovoy
2009-03-16 06:28:47 +00:00
parent 699740a53e
commit 83f2c7a600
2 changed files with 6 additions and 3 deletions

View File

@@ -75,8 +75,11 @@ For any |Forward Sequence| ``s``, binary |Lambda Expression| ``op``, and arbitra
.. parsed-literal:: .. parsed-literal::
typedef iter_fold< s,state,apply<op,_1,deref<_2> > >::type t; typedef iter_fold<
s
, state
, apply2< lambda<op>::type, _1, deref<_2> >
>::type t;
Complexity Complexity

View File

@@ -88,7 +88,7 @@ and arbitrary type ``state``:
typedef reverse_iter_fold< typedef reverse_iter_fold<
s s
, state , state
, apply<backward_op,_1,deref<_2> > , apply2< lambda<backward_op>::type, _1, deref<_2> >
>::type t; >::type t;