reverse_unique.rst
来自「Boost provides free peer-reviewed portab」· RST 代码 · 共 133 行
RST
133 行
.. Algorithms/Transformation Algorithms//reverse_unique |180.. 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)reverse_unique==============Synopsis--------.. parsed-literal:: template< typename Seq , typename Pred , typename In = |unspecified| > struct reverse_unique { typedef |unspecified| type; };Description-----------Returns a sequence of the initial elements of every subrange of thereversed original sequence ``Seq`` whose elements are all the same. |transformation algorithm disclaimer|Header------.. parsed-literal:: #include <boost/mpl/unique.hpp>Model of--------|Reversible Algorithm|Parameters----------+---------------+-----------------------------------+-------------------------------+| Parameter | Requirement | Description |+===============+===================================+===============================+| ``Sequence`` | |Forward Sequence| | An original sequence. |+---------------+-----------------------------------+-------------------------------+| ``Pred`` | Binary |Lambda Expression| | An equivalence relation. |+---------------+-----------------------------------+-------------------------------+| ``In`` | |Inserter| | An inserter. |+---------------+-----------------------------------+-------------------------------+Expression semantics--------------------|Semantics disclaimer...| |Reversible Algorithm|.For any |Forward Sequence| ``s``, a binary |Lambda Expression| ``pred``, and an |Inserter| ``in``:.. parsed-literal:: typedef reverse_unique<s,pred,in>::type r; :Return type: A type.:Semantics: If ``size<s>::value <= 1``, then equivalent to .. parsed-literal:: typedef reverse_copy<s,in>::type r; otherwise equivalent to .. parsed-literal:: typedef lambda<pred>::type p; typedef lambda<in::operation>::type in_op; typedef apply_wrap\ ``2``\< in_op , in::state , front<types>::type >::type in_state; typedef reverse_fold< s , pair< in_state, front<s>::type > , eval_if< apply_wrap\ ``2``\<p, second<_1>, _2> , identity< first<_1> > , apply_wrap\ ``2``\<in_op, first<_1>, _2> > >::type::first r;Complexity----------Linear. Performs exactly ``size<s>::value - 1`` applications of ``pred``, and at most ``size<s>::value`` insertions.Example-------.. parsed-literal:: typedef vector<int,float,float,char,int,int,int,double> types; typedef vector<double,int,char,float,int> expected; typedef reverse_unique< types, is_same<_1,_2> >::type result; BOOST_MPL_ASSERT(( equal< result,expected > ));See also--------|Transformation Algorithms|, |Reversible Algorithm|, |unique|, |reverse_remove|, |reverse_copy_if|, |replace_if|
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?