diff --git a/doc/index.html b/doc/index.html
index 114c635..4914b12 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -42,15 +42,20 @@
Abstract
Introduction to endianness
Introduction to the Boost.Endian library
-Choosing between conversion, buffer types,
- and arithmetic types
+Choosing between conversion functions,
+ buffer types, and arithmetic types
Characteristics
Endianness invariants
Conversion explicitness
Arithmetic operations
Sizes
Alignments
- Use cases
+ Design patterns
+ Convert only as needed (i.e. lazy)
+ Convert in anticipation of need
+ Generally
+as needed, locally in anticipation
+ Use case examples
Porting endian unaware codebase
Porting endian aware codebase
Reliability and arithmetic-speed
@@ -83,7 +88,11 @@
endianness of integers,
floating point numbers, and user-defined types.
+ +
+
@@ -810,17 +820,14 @@ and 16, 32, and 64-bit aligned integers.
The endian types have been decomposed into endian buffer types +
Headers have been renamed to endian/arithmetic.hpp
and
+
endian/arithmetic.hpp
and
endian/conversion.hpp
. endian/buffers.hpp
has been
added.
Infrastructure file names were changed accordingly.The endian buffer and arithmetic types and endian conversion functions now support 32-bit (float)
and
+
float)
and
64-bit (double)
floating point, as requested.