.. Iterators/Iterator Metafunctions//deref |50 deref ===== Synopsis -------- .. parsed-literal:: template< typename Iterator > struct deref { typedef |unspecified| type; }; Description ----------- Dereferences an iterator. Header ------ .. parsed-literal:: #include Parameters ---------- +---------------+---------------------------+-----------------------------------+ | Parameter | Requirement | Description | +===============+===========================+===================================+ | ``Iterator`` | |Forward Iterator| | The iterator to dereference. | +---------------+---------------------------+-----------------------------------+ Expression semantics -------------------- For any |Forward Iterator|\ s ``iter``: .. parsed-literal:: typedef deref::type t; :Return type: A type. :Precondition: ``iter`` is dereferenceable. :Semantics: ``t`` is identical to the element referenced by ``iter``. If ``iter`` is a user-defined iterator, the library-provided default implementation is equivalent to .. parsed-literal:: typedef iter::type t; Complexity ---------- Amortized constant time. Example ------- .. parsed-literal:: typedef vector types; typedef begin::type iter; BOOST_MPL_ASSERT(( is_same< deref::type, char > )); See also -------- |Iterators|, |begin| / |end|, |next|