.. Sequences/Concepts//Integral Sequence Wrapper |90 Integral Sequence Wrapper ========================= Description ----------- An |Integral Sequence Wrapper| is a class template that provides a concise interface for creating a corresponding sequence of |Integral Constant|\ s. In particular, assuming that ``seq`` is a name of the wrapper's underlying sequence and |c1...cn| are integral constants of an integral type ``T`` to be stored in the sequence, the wrapper provides us with the following notation: .. line-block:: ``seq_c`` If ``seq`` is a |Variadic Sequence|, *numbered* wrapper forms are also avaialable: .. line-block:: ``seq``\ *n*\ ``_c`` Expression requirements ----------------------- |In the following table...| ``seq`` is a placeholder token for the |Integral Sequence Wrapper|'s underlying sequence's name. .. |seq_c| replace:: ``seq_c`` | |Forward Sequence| | Amortized constant time. | +-------------------------------+-----------------------+---------------------------+ | |seq_c|\ ``>::type`` | |Forward Sequence| | Amortized constant time. | +-------------------------------+-----------------------+---------------------------+ | |seq_c|\ ``>::value_type`` | An integral type | Amortized constant time. | +-------------------------------+-----------------------+---------------------------+ | |seqn_c|\ ``>`` | |Forward Sequence| | Amortized constant time. | +-------------------------------+-----------------------+---------------------------+ | |seqn_c|\ ``>::type`` | |Forward Sequence| | Amortized constant time. | +-------------------------------+-----------------------+---------------------------+ | |seqn_c|\ ``>::value_type`` | An integral type | Amortized constant time. | +-------------------------------+-----------------------+---------------------------+ Expression semantics -------------------- .. parsed-literal:: typedef seq_c s; typedef seq\ *n*\ _c s; :Semantics: ``s`` is a sequence ``seq`` of integral constant wrappers ``integral_c``, ``integral_c``, ... ``integral_c``. :Postcondition: ``size::value == n``. .. .. parsed-literal:: BOOST_MPL_ASSERT_RELATION(( at_c::type::value,==,\ |c1| )); BOOST_MPL_ASSERT_RELATION(( at_c::type::value,==,\ |c2| )); ... BOOST_MPL_ASSERT_RELATION(( at_c::type::value,==,\ |cn| )); .. .......................................................................... .. parsed-literal:: typedef seq_c::type s; typedef seq\ *n*\ _c::type s; :Semantics: ``s`` is identical to ``seq``\ *n*\ ``<``\ ``integral_c``,\ ``integral_c``, ... ``integral_c`` ``>``. .. .......................................................................... .. parsed-literal:: typedef seq_c::value_type t; typedef seq\ *n*\ _c::value_type t; :Semantics: ``is_same::value == true``. Models ------ * |vector_c| * |list_c| * |set_c| See also -------- |Sequences|, |Variadic Sequence|, |Integral Constant|