diff --git a/doc/html/boost_integer/cstdint.html b/doc/html/boost_integer/cstdint.html index b709cfc..151ee51 100644 --- a/doc/html/boost_integer/cstdint.html +++ b/doc/html/boost_integer/cstdint.html @@ -2,7 +2,7 @@ Standard Integer Types - + @@ -20,9 +20,9 @@
-PrevUpHomeNext +PrevUpHomeNext
-
+
@@ -41,7 +41,7 @@
Integer Constant Macros
-
+
@@ -62,7 +62,7 @@ a test program.

-
+
@@ -82,7 +82,7 @@ conventions rather than C++ Standard Library header naming conventions.

-
+
@@ -99,7 +99,7 @@ Use the respective names in namespace boost instead.

-
+

Exact-width integer types @@ -119,7 +119,7 @@ The absence of int64_t and uint64_t is indicated by the macro BOOST_NO_INT64_T.

-
+

Minimum-width integer types @@ -138,26 +138,42 @@ The following minimum-width integer types are provided for all platforms:

    -
  • int_least8_t
  • -
  • int_least16_t
  • -
  • int_least32_t
  • -
  • uint_least8_t
  • -
  • uint_least16_t
  • -
  • uint_least32_t
  • +
  • + int_least8_t +
  • +
  • + int_least16_t +
  • +
  • + int_least32_t +
  • +
  • + uint_least8_t +
  • +
  • + uint_least16_t +
  • +
  • + uint_least32_t +

The following types are available only if, after including <boost/cstdint.hpp>, the macro BOOST_NO_INT64_T is not defined:

    -
  • int_least64_t
  • -
  • uint_least64_t
  • +
  • + int_least64_t +
  • +
  • + uint_least64_t +

All other minimum-width integer types are optional.

-
+

Fastest minimum-width integer types @@ -176,26 +192,42 @@ The following fastest minimum-width integer types are provided for all platforms:

    -
  • int_fast8_t
  • -
  • int_fast16_t
  • -
  • int_fast32_t
  • -
  • uint_fast8_t
  • -
  • uint_fast16_t
  • -
  • uint_fast32_t
  • +
  • + int_fast8_t +
  • +
  • + int_fast16_t +
  • +
  • + int_fast32_t +
  • +
  • + uint_fast8_t +
  • +
  • + uint_fast16_t +
  • +
  • + uint_fast32_t +

The following types are available only if, after including <boost/cstdint.hpp>, the macro BOOST_NO_INT64_T is not defined:

    -
  • int_fast64_t
  • -
  • uint_fast64_t
  • +
  • + int_fast64_t +
  • +
  • + uint_fast64_t +

All other fastest minimum-width integer types are optional.

-
+

Greatest-width integer types @@ -212,7 +244,7 @@ These types are provided for all platforms.

-
+

Integer Constant Macros @@ -251,7 +283,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/boost_integer/history.html b/doc/html/boost_integer/history.html index 3d6cb39..e858c84 100644 --- a/doc/html/boost_integer/history.html +++ b/doc/html/boost_integer/history.html @@ -2,7 +2,7 @@ History - + @@ -19,51 +19,51 @@
-PrevUpHome +PrevUpHome
-
+
- + 1.42.0
  • - Reverted Trunk to release branch state (i.e. a "known good state"). -
  • + Reverted Trunk to release branch state (i.e. a "known good state"). +
  • - Fixed issues: 653, - 3084, - 3177, - 3180, - 3568, - 3657, - 2134. -
  • + Fixed issues: 653, + 3084, + 3177, + 3180, + 3568, + 3657, + 2134. +
  • - Added long long support to boost::static_log2, boost::static_signed_min, - boost::static_signed_max, boost::static_unsigned_minboost::static_unsigned_max, - when available. -
  • + Added long long support to boost::static_log2, boost::static_signed_min, + boost::static_signed_max, boost::static_unsigned_minboost::static_unsigned_max, + when available. +
  • - The argument type and the result type of boost::static_signed_min - etc are now typedef'd. Formerly, they were hardcoded as unsigned - long and int respectively. Please, use the provided - typedefs in new code (and update old code as soon as possible). -
  • + The argument type and the result type of boost::static_signed_min + etc are now typedef'd. Formerly, they were hardcoded as unsigned + long and int respectively. Please, use the + provided typedefs in new code (and update old code as soon as possible). +
- + 1.32.0
  • - The argument type and the result type of boost::static_log2 - are now typedef'd. Formerly, they were hardcoded as unsigned long - and int respectively. Please, use the provided typedefs - in new code (and update old code as soon as possible). -
+ The argument type and the result type of boost::static_log2 + are now typedef'd. Formerly, they were hardcoded as unsigned long + and int respectively. Please, use the provided typedefs + in new code (and update old code as soon as possible). +
@@ -76,7 +76,7 @@

-PrevUpHome +PrevUpHome
diff --git a/doc/html/boost_integer/integer.html b/doc/html/boost_integer/integer.html index 4078a26..5f69206 100644 --- a/doc/html/boost_integer/integer.html +++ b/doc/html/boost_integer/integer.html @@ -2,7 +2,7 @@ Integer Type Selection - + @@ -20,9 +20,9 @@
-PrevUpHomeNext +PrevUpHomeNext
-
+
@@ -44,7 +44,7 @@ characteristics such as number of bits or maximum value. This facility is particularly useful for solving generic programming problems.

-
+
@@ -102,7 +102,7 @@ } // namespace boost
-
+

Easiest-to-Manipulate Types @@ -126,7 +126,7 @@ the input type.

-
+
@@ -341,7 +341,7 @@

-
+
@@ -363,7 +363,7 @@ }
-
+

Demonstration Program @@ -374,7 +374,7 @@ of the sized type class templates.

-
+
@@ -383,18 +383,18 @@

  • - Avoid recursion because of concern about C++'s limited guaranteed recursion - depth (17). -
  • + Avoid recursion because of concern about C++'s limited guaranteed recursion + depth (17). +
  • - Avoid macros on general principles. -
  • + Avoid macros on general principles. +
  • - Try to keep the design as simple as possible. -
  • + Try to keep the design as simple as possible. +
-
+
@@ -403,7 +403,7 @@ to use the types supplied in <boost/cstdint.hpp>.

-
+
@@ -426,7 +426,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/boost_integer/log2.html b/doc/html/boost_integer/log2.html index 44669ae..8204023 100644 --- a/doc/html/boost_integer/log2.html +++ b/doc/html/boost_integer/log2.html @@ -2,7 +2,7 @@ Compile Time log2 Calculation - + @@ -20,9 +20,9 @@
-PrevUpHomeNext +PrevUpHomeNext
-
+
@@ -39,7 +39,7 @@ determines the position of the highest bit in a given value. This facility is useful for solving generic programming problems.

-
+
@@ -66,7 +66,7 @@ } // namespace boost
-
+
@@ -87,16 +87,16 @@

  • -static_log2_argument_type is an unsigned integer - type (C++ standard, 3.9.1p3). -
  • + static_log2_argument_type is an unsigned + integer type (C++ standard, 3.9.1p3). +
  • -static_log2_result_type is an integer type - (C++ standard, 3.9.1p7). -
  • + static_log2_result_type is an integer type + (C++ standard, 3.9.1p7). +
-
+

Demonstration Program @@ -107,7 +107,7 @@ of the binary logarithm class template.

-
+
@@ -120,7 +120,7 @@ to be available statically (i.e. at compile-time).

-
+
@@ -145,7 +145,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/boost_integer/mask.html b/doc/html/boost_integer/mask.html index ff9972f..068634d 100644 --- a/doc/html/boost_integer/mask.html +++ b/doc/html/boost_integer/mask.html @@ -2,7 +2,7 @@ Integer Masks - + @@ -20,9 +20,9 @@
-PrevUpHomeNext +PrevUpHomeNext
-
+
@@ -41,7 +41,7 @@
Rationale
Credits
-
+
@@ -52,7 +52,7 @@ type selection templates header.

-
+
@@ -90,7 +90,7 @@ } // namespace boost
-
+

Single Bit-Mask Class Template @@ -191,7 +191,7 @@


-
+

Group Bit-Mask Class Template @@ -292,7 +292,7 @@


-
+

Implementation Notes @@ -304,7 +304,7 @@ bit counts.

-
+
@@ -328,7 +328,7 @@ }
-
+

Demonstration Program @@ -339,7 +339,7 @@ of the bit mask class templates.

-
+
@@ -351,7 +351,7 @@ bits. This prevents contamination of values by the higher, unused bits.

-
+
@@ -372,7 +372,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/boost_integer/minmax.html b/doc/html/boost_integer/minmax.html index 7e8d396..8f9b3e2 100644 --- a/doc/html/boost_integer/minmax.html +++ b/doc/html/boost_integer/minmax.html @@ -2,7 +2,7 @@ Compile time min/max calculation - + @@ -20,9 +20,9 @@
-PrevUpHomeNext +PrevUpHomeNext
-
+
@@ -40,7 +40,7 @@ provide a compile-time evaluation of the minimum or maximum of two integers. These facilities are useful for generic programming problems.

-
+
@@ -65,7 +65,7 @@ }
-
+
@@ -77,7 +77,7 @@ which is set to the respective minimum or maximum of the template's parameters.

-
+
@@ -112,7 +112,7 @@ }
-
+

Demonstration Program @@ -123,7 +123,7 @@ extrema class templates.

-
+
@@ -133,7 +133,7 @@ another class template.

-
+
@@ -154,7 +154,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/boost_integer/traits.html b/doc/html/boost_integer/traits.html index d60fef3..08f8f38 100644 --- a/doc/html/boost_integer/traits.html +++ b/doc/html/boost_integer/traits.html @@ -2,7 +2,7 @@ Integer Traits - + @@ -20,9 +20,9 @@
-PrevUpHomeNext +PrevUpHomeNext
-
+ -
+
@@ -62,7 +62,7 @@ The template class integer_traits addresses this problem.

-
+
@@ -82,7 +82,7 @@ }
-
+
@@ -179,7 +179,7 @@ unless boost::integer_traits is also specialized.

-
+
@@ -188,7 +188,7 @@ exercises the integer_traits class.

-
+
@@ -209,7 +209,7 @@
-PrevUpHomeNext +PrevUpHomeNext
diff --git a/doc/html/index.html b/doc/html/index.html index 1e4d3da..4c106d4 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -2,7 +2,7 @@ Boost.Integer - + @@ -17,8 +17,8 @@ More
-
Next
-
+
Next
+

@@ -39,8 +39,8 @@

-
-

+

+

Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

@@ -61,7 +61,7 @@
History
-
+
@@ -237,10 +237,10 @@
- +

Last revised: April 05, 2010 at 07:20:03 GMT

Last revised: July 08, 2010 at 20:45:20 GMT


-
Next
+
Next