From 0acccdb74d0793273dca89312fcbda235b651437 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 7 Sep 2006 23:02:42 +0000 Subject: [PATCH] Remove bogus file [SVN r35038] --- doc/src/refmanual/IntegralConstant.rst.~1.1.~ | 71 ------------------- 1 file changed, 71 deletions(-) delete mode 100644 doc/src/refmanual/IntegralConstant.rst.~1.1.~ diff --git a/doc/src/refmanual/IntegralConstant.rst.~1.1.~ b/doc/src/refmanual/IntegralConstant.rst.~1.1.~ deleted file mode 100644 index cc25661..0000000 --- a/doc/src/refmanual/IntegralConstant.rst.~1.1.~ +++ /dev/null @@ -1,71 +0,0 @@ -.. Data Types/Concepts//Integral Constant - -Integral Constant -================= - -Description ------------ - -An |Integral Constant| is a holder class for a compile-time value of an -integral type. Every |Integral Constant| is also a nullary |Metafunction|, -returning itself. An integral constant *object* is implicitly convertible to the -corresponding run-time value of the wrapped integral type. - -Expression requirements ------------------------ - -|In the following table...| ``n`` is a model of |Integral Constant|. - -+-----------------------------------+---------------------------------------+---------------------------+ -| Expression | Type | Complexity | -+===================================+=======================================+===========================+ -| ``n::value_type`` | An integral type | Constant time. | -+-----------------------------------+---------------------------------------+---------------------------+ -| ``n::value`` | An integral constant expression | Constant time. | -+-----------------------------------+---------------------------------------+---------------------------+ -| ``n::type`` | |Integral Constant| | Constant time. | -+-----------------------------------+---------------------------------------+---------------------------+ -| ``next::type`` | |Integral Constant| | Constant time. | -+-----------------------------------+---------------------------------------+---------------------------+ -| ``prior::type`` | |Integral Constant| | Constant time. | -+-----------------------------------+---------------------------------------+---------------------------+ -| ``n::value_type const c = n()`` | | Constant time. | -+-----------------------------------+---------------------------------------+---------------------------+ - - -Expression semantics --------------------- - -+---------------------------------------+-----------------------------------------------------------+ -| Expression | Semantics | -+=======================================+===========================================================+ -| ``n::value_type`` | A cv-unqualified type of ``n::value``. | -+---------------------------------------+-----------------------------------------------------------+ -| ``n::value`` | The value of the wrapped integral constant. | -+---------------------------------------+-----------------------------------------------------------+ -| ``n::type`` | ``is_same::value == true``. | -+---------------------------------------+-----------------------------------------------------------+ -| ``next::type`` | An |Integral Constant| ``c`` of type ``n::value_type`` | -| | such that ``c::value == n::value + 1``. | -+---------------------------------------+-----------------------------------------------------------+ -| ``prior::type`` | An |Integral Constant| ``c`` of type ``n::value_type`` | -| | such that ``c::value == n::value - 1``. | -+---------------------------------------+-----------------------------------------------------------+ -| ``n::value_type const c = n()`` | ``c == n::value``. | -+---------------------------------------+-----------------------------------------------------------+ - - -Models ------- - -* |bool_| -* |int_| -* |long_| -* |integral_c| - - -See also --------- - -|Data Types|, |Integral Sequence Wrapper|, |integral_c| -