.. 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 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::type t; :Return type: |Extensible Sequence| or |Extensible Associative Sequence|. :Semantics: Equivalent to .. parsed-literal:: typedef erase< s, begin::type, end::type >::type t; :Postcondition: ``empty::value == true``. Complexity ---------- Amortized constant time. Example ------- .. parsed-literal:: typedef vector_c odds; typedef clear::type nothing; BOOST_MPL_ASSERT(( empty )); See also -------- |Extensible Sequence|, |Extensible Associative Sequence|, |erase|, |empty|, |begin|, |end|