front.rst
来自「Boost provides free peer-reviewed portab」· RST 代码 · 共 106 行
RST
106 行
.. Sequences/Intrinsic Metafunctions//front.. 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)front=====Synopsis--------.. parsed-literal:: template< typename Sequence > struct front { typedef |unspecified| type; };Description-----------Returns the first element in the sequence.Header------.. parsed-literal:: #include <boost/mpl/front.hpp>Model of--------|Tag Dispatched Metafunction|Parameters----------+---------------+-----------------------+-----------------------------------------------+| Parameter | Requirement | Description |+===============+=======================+===============================================+| ``Sequence`` | |Forward Sequence| | A sequence to be examined. |+---------------+-----------------------+-----------------------------------------------+Expression semantics--------------------For any |Forward Sequence| ``s``:.. parsed-literal:: typedef front<s>::type t; :Return type: A type.:Precondition: ``empty<s>::value == false``.:Semantics: Equivalent to .. parsed-literal:: typedef deref< begin<s>::type >::type t;Complexity----------Amortized constant time.Example-------.. parsed-literal:: typedef list<long>::type types1; typedef list<int,long>::type types2; typedef list<char,int,long>::type types3; BOOST_MPL_ASSERT(( is_same< front<types1>::type, long > )); BOOST_MPL_ASSERT(( is_same< front<types2>::type, int> )); BOOST_MPL_ASSERT(( is_same< front<types3>::type, char> ));See also--------|Forward Sequence|, |back|, |push_front|, |begin|, |deref|, |at|
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?