⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clear.rst

📁 C++的一个好库。。。现在很流行
💻 RST
字号:
.. Sequences/Intrinsic Metafunctions//clear

clear
=====

Synopsis
--------

.. parsed-literal::
    
    template<
          typename Sequence
        >
    struct clear
    {
        typedef |unspecified| type;
    };



Description
-----------

Returns an empty sequence |concept-identical| to ``Sequence``.


Header
------

.. parsed-literal::
    
    #include <boost/mpl/clear.hpp>


Model of
--------

|Tag Dispatched Metafunction|


Parameters
----------

+---------------+-----------------------------------+---------------------------------------+
| Parameter     | Requirement                       | Description                           |
+===============+===================================+=======================================+
| ``Sequence``  | |Extensible Sequence| or          | A sequence to get an empty "copy" of. |
|               | |Extensible Associative Sequence| |                                       |
+---------------+-----------------------------------+---------------------------------------+


Expression semantics
--------------------

For any |Extensible Sequence| or |Extensible Associative Sequence| ``s``:


.. parsed-literal::

    typedef clear<s>::type t; 

:Return type:
    |Extensible Sequence| or |Extensible Associative Sequence|.

:Semantics:
    Equivalent to 

    .. parsed-literal::
    
       typedef erase< s, begin<s>::type, end<s>::type >::type t;


:Postcondition:
    ``empty<s>::value == true``.


Complexity
----------

Amortized constant time. 


Example
-------

.. parsed-literal::
    
    typedef vector_c<int,1,3,5,7,9,11> odds;
    typedef clear<odds>::type nothing;
    
    BOOST_MPL_ASSERT(( empty<nothing> ));


See also
--------

|Extensible Sequence|, |Extensible Associative Sequence|, |erase|, |empty|, |begin|, |end|

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -