iter_fold.rst
来自「Boost provides free peer-reviewed portab」· RST 代码 · 共 120 行
RST
120 行
.. Algorithms/Iteration Algorithms//iter_fold.. Copyright Aleksey Gurtovoy, David Abrahams 2007... Distributed under the Boost.. Software License, Version 1.0. (See accompanying.. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)iter_fold=========Synopsis--------.. parsed-literal:: template< typename Sequence , typename State , typename ForwardOp > struct iter_fold { typedef |unspecified| type; };Description-----------Returns the result of the successive application of binary ``ForwardOp`` to the result of the previous ``ForwardOp`` invocation (``State`` if it's the first call) and each iterator in the range [``begin<Sequence>::type``, ``end<Sequence>::type``) in order.Header------.. parsed-literal:: #include <boost/mpl/iter_fold.hpp>Parameters----------+---------------+-------------------------------+---------------------------------------------------+| Parameter | Requirement | Description |+===============+===============================+===================================================+| ``Sequence`` | |Forward Sequence| | A sequence to iterate. |+---------------+-------------------------------+---------------------------------------------------+| ``State`` | Any type | The initial state for the first ``ForwardOp`` || | | application. |+---------------+-------------------------------+---------------------------------------------------+| ``ForwardOp`` | Binary |Lambda Expression| | The operation to be executed on forward || | | traversal. |+---------------+-------------------------------+---------------------------------------------------+Expression semantics--------------------For any |Forward Sequence| ``s``, binary |Lambda Expression| ``op``, and an arbitrary type ``state``:.. parsed-literal:: typedef iter_fold<s,state,op>::type t; :Return type: A type.:Semantics: Equivalent to .. parsed-literal:: typedef begin<Sequence>::type i\ :sub:`1`; typedef apply<op,state,i\ :sub:`1`>::type state\ :sub:`1`; typedef next<i\ :sub:`1`>::type i\ :sub:`2`; typedef apply<op,state\ :sub:`1`,i\ :sub:`2`>::type state\ :sub:`2`; |...| typedef apply<op,state\ :sub:`n-1`,i\ :sub:`n`>::type state\ :sub:`n`; typedef next<i\ :sub:`n`>::type last; typedef state\ :sub:`n` t; where ``n == size<s>::value`` and ``last`` is identical to ``end<s>::type``; equivalent to ``typedef state t;`` if ``empty<s>::value == true``. Complexity----------Linear. Exactly ``size<s>::value`` applications of ``op``. Example-------.. parsed-literal:: typedef vector_c<int,5,-1,0,7,2,0,-5,4> numbers; typedef iter_fold< numbers , begin<numbers>::type , if_< less< deref<_1>, deref<_2> >,_2,_1 > >::type max_element_iter; BOOST_MPL_ASSERT_RELATION( deref<max_element_iter>::type::value, ==, 7 );See also--------|Algorithms|, |reverse_iter_fold|, |fold|, |reverse_fold|, |copy|
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?