Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82442 - in sandbox/static_vector: boost/container doc doc/generated doc/html doc/html/static_vector/static_vector
From: adam.wulkiewicz_at_[hidden]
Date: 2013-01-10 19:59:44


Author: awulkiew
Date: 2013-01-10 19:59:43 EST (Thu, 10 Jan 2013)
New Revision: 82442
URL: http://svn.boost.org/trac/boost/changeset/82442

Log:
static_vector docs improved - added text formatting.
Text files modified:
   sandbox/static_vector/boost/container/static_vector.hpp | 166 ++++---
   sandbox/static_vector/doc/Doxyfile | 2
   sandbox/static_vector/doc/generated/static_vector.qbk | 806 ++++++++++++++++++++++++---------------
   sandbox/static_vector/doc/html/index.html | 2
   sandbox/static_vector/doc/html/static_vector/static_vector/reference.html | 656 ++++++++++++--------------------
   5 files changed, 826 insertions(+), 806 deletions(-)

Modified: sandbox/static_vector/boost/container/static_vector.hpp
==============================================================================
--- sandbox/static_vector/boost/container/static_vector.hpp (original)
+++ sandbox/static_vector/boost/container/static_vector.hpp 2013-01-10 19:59:43 EST (Thu, 10 Jan 2013)
@@ -164,7 +164,7 @@
 } // namespace static_vector_detail
 
 /**
- * @brief A hybrid of boost::container::vector and boost::array.
+ * @brief A hybrid of \c boost::container::vector and \c boost::array.
  *
  * static_vector is a sequence container like boost::container::vector with contiguous storage that can
  * change in size, along with the static allocation, low overhead, and fixed capacity of boost::array.
@@ -178,12 +178,6 @@
  * elements in cases with complex object lifetime requirements that would otherwise not be trivially
  * possible.
  *
- * @tparam Value the type of element that will be stored.
- * @tparam Capacity the maximum number of elements static_vector can store, fixed at compile time.
- * @tparam Strategy defines the public typedefs and error handlers,
- * implements StaticVectorStrategy and has some similarities
- * to an Allocator.
- *
  * @par Error Handling
  * Insertion beyond the capacity and out of bounds errors result in undefined behavior unless
  * otherwise specified. In this respect if size() == capacity(), then static_vector::push_back()
@@ -193,6 +187,12 @@
  * @par Advanced Usage
  * Error handling behavior can be modified to more closely match std::vector exception behavior
  * when exceeding bounds by providing an alternate Strategy and static_vector_traits instantiation.
+ *
+ * @tparam Value The type of element that will be stored.
+ * @tparam Capacity The maximum number of elements static_vector can store, fixed at compile time.
+ * @tparam Strategy Defines the public typedefs and error handlers,
+ * implements StaticVectorStrategy and has some similarities
+ * to an Allocator.
  */
 template <typename Value, std::size_t Capacity, typename Strategy/*FakeAllocator*/ = static_vector_detail::default_strategy<Value>/*fake_allocator*/ >
 class static_vector
@@ -273,7 +273,7 @@
         : m_size(0)
     {}
 
- //! @pre count <= Capacity.
+ //! @pre <tt>count <= Capacity</tt>
     //!
     //! @brief Constructs a static_vector containing count default constructed Values.
     //!
@@ -293,7 +293,7 @@
         this->resize(count); // may throw
     }
 
- //! @pre count <= Capacity.
+ //! @pre <tt>count <= Capacity</tt>
     //!
     //! @brief Constructs a static_vector containing count copies of value.
     //!
@@ -314,10 +314,11 @@
         this->resize(count, value); // may throw
     }
 
- //! @pre distance(first, last) <= Capacity.
- //! Iterator must meet the ForwardTraversal Iterator concept
+ //! @pre
+ //! @li <tt>distance(first, last) <= Capacity</tt>
+ //! @li Iterator must meet the \c ForwardTraversalIterator concept.
     //!
- //! @brief Constructs a static_vector containing copy of a range [first, last).
+ //! @brief Constructs a static_vector containing copy of a range <tt>[first, last)</tt>.
     //!
     //! @param first The iterator to the first element in range.
     //! @param last The iterator to the one after the last element in range.
@@ -355,7 +356,7 @@
         sv::uninitialized_copy(other.begin(), other.end(), this->begin()); // may throw
     }
 
- //! @pre other.size() <= Capacity.
+ //! @pre <tt>other.size() <= Capacity</tt>.
     //!
     //! @brief Constructs a copy of other static_vector.
     //!
@@ -395,7 +396,7 @@
         return *this;
     }
 
- //! @pre other.size() <= Capacity.
+ //! @pre <tt>other.size() <= Capacity</tt>
     //!
     //! @brief Copy assigns Values stored in the other static_vector to this one.
     //!
@@ -427,10 +428,10 @@
     //! @param other The static_vector which content will be moved to this one.
     //!
     //! @par Throws
- //! @li If boost::has_nothrow_move<Value>::value is true and Value's move constructor throws.
- //! @li If boost::has_nothrow_move<Value>::value is false and Value's copy constructor throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor throws.
     //! @internal
- //! @li It throws only if use_memop_in_swap_and_move is false_type - default.
+ //! @li It throws only if \c use_memop_in_swap_and_move is \c false_type - default.
     //! @endinternal
     //!
     //! @par Complexity
@@ -445,17 +446,17 @@
         this->move_ctor_dispatch(other, use_memop_in_swap_and_move());
     }
 
- //! @pre other.size() <= Capacity.
+ //! @pre <tt>other.size() <= Capacity</tt>
     //!
     //! @brief Move constructor. Moves Values stored in the other static_vector to this one.
     //!
     //! @param other The static_vector which content will be moved to this one.
     //!
     //! @par Throws
- //! @li If boost::has_nothrow_move<Value>::value is true and Value's move constructor throws.
- //! @li If boost::has_nothrow_move<Value>::value is false and Value's copy constructor throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor throws.
     //! @internal
- //! @li It throws only if use_memop_in_swap_and_move is false_type - default.
+ //! @li It throws only if \c use_memop_in_swap_and_move is false_type - default.
     //! @endinternal
     //! @internal
     //! @li If a throwing error handler is specified, throws when the capacity is exceeded. (not by default).
@@ -484,10 +485,10 @@
     //! @param other The static_vector which content will be moved to this one.
     //!
     //! @par Throws
- //! @li If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws.
- //! @li If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws.
     //! @internal
- //! @li It throws only if use_memop_in_swap_and_move is false_type - default.
+ //! @li It throws only if \c use_memop_in_swap_and_move is \c false_type - default.
     //! @endinternal
     //!
     //! @par Complexity
@@ -507,17 +508,17 @@
         return *this;
     }
 
- //! @pre other.size() <= Capacity.
+ //! @pre <tt>other.size() <= Capacity</tt>
     //!
     //! @brief Move assignment. Moves Values stored in the other static_vector to this one.
     //!
     //! @param other The static_vector which content will be moved to this one.
     //!
     //! @par Throws
- //! @li If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws.
- //! @li If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws.
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws.
     //! @internal
- //! @li It throws only if use_memop_in_swap_and_move is false_type - default.
+ //! @li It throws only if \c use_memop_in_swap_and_move is \c false_type - default.
     //! @endinternal
     //! @internal
     //! @li If a throwing error handler is specified, throws when the capacity is exceeded. (not by default).
@@ -560,10 +561,10 @@
     //! @param other The static_vector which content will be swapped with this one's content.
     //!
     //! @par Throws
- //! @li If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws,
- //! @li If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws,
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws,
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws,
     //! @internal
- //! @li It throws only if use_memop_in_swap_and_move and use_optimized_swap are false_type - default.
+ //! @li It throws only if \c use_memop_in_swap_and_move and \c use_optimized_swap are \c false_type - default.
     //! @endinternal
     //!
     //! @par Complexity
@@ -580,17 +581,17 @@
         this->swap_dispatch(other, use_optimized_swap());
     }
 
- //! @pre other.size() <= Capacity && size() <= other.capacity().
+ //! @pre <tt>other.size() <= Capacity && size() <= other.capacity()</tt>
     //!
     //! @brief Swaps contents of the other static_vector and this one.
     //!
     //! @param other The static_vector which content will be swapped with this one's content.
     //!
     //! @par Throws
- //! @li If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws,
- //! @li If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws,
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws,
+ //! @li If \c boost::has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws,
     //! @internal
- //! @li It throws only if use_memop_in_swap_and_move and use_optimized_swap are false_type - default.
+ //! @li It throws only if \c use_memop_in_swap_and_move and \c use_optimized_swap are \c false_type - default.
     //! @endinternal
     //! @internal
     //! @li If a throwing error handler is specified, throws when the capacity is exceeded. (not by default).
@@ -614,7 +615,7 @@
         this->swap_dispatch(other, use_optimized_swap());
     }
 
- //! @pre count <= Capacity.
+ //! @pre <tt>count <= Capacity</tt>
     //!
     //! @brief Inserts or erases elements at the end such that
     //! the size becomes count. New elements are default constructed.
@@ -646,7 +647,7 @@
         m_size = count; // update end
     }
 
- //! @pre count <= Capacity.
+ //! @pre <tt>count <= Capacity</tt>
     //!
     //! @brief Inserts or erases elements at the end such that
     //! the size becomes count. New elements are copy constructed from value.
@@ -678,7 +679,7 @@
         m_size = count; // update end
     }
 
- //! @pre count <= Capacity.
+ //! @pre <tt>count <= Capacity</tt>
     //!
     //! @brief This call has no effect because the Capacity of this container is constant.
     //!
@@ -697,7 +698,7 @@
         errh::check_capacity(*this, count); // may throw
     }
 
- //! @pre size() < Capacity.
+ //! @pre <tt>size() < Capacity</tt>
     //!
     //! @brief Adds a copy of value at the end.
     //!
@@ -720,7 +721,7 @@
         ++m_size; // update end
     }
 
- //! @pre size() < Capacity.
+ //! @pre <tt>size() < Capacity</tt>
     //!
     //! @brief Moves value to the end.
     //!
@@ -743,7 +744,7 @@
         ++m_size; // update end
     }
 
- //! @pre !empty().
+ //! @pre <tt>!empty()</tt>
     //!
     //! @brief Destroys last value and decreases the size.
     //!
@@ -761,7 +762,9 @@
         --m_size; // update end
     }
 
- //! @pre position must be a valid iterator of *this in range [begin(), end()].
+ //! @pre
+ //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
+ //! @li <tt>size() < Capacity</tt>
     //!
     //! @brief Inserts a copy of element at position.
     //!
@@ -782,8 +785,9 @@
         return this->priv_insert(position, value);
     }
 
- //! @pre position must be a valid iterator of *this in range [begin(), end()]
- //! and size() < Capacity.
+ //! @pre
+ //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
+ //! @li <tt>size() < Capacity</tt>
     //!
     //! @brief Inserts a move-constructed element at position.
     //!
@@ -803,8 +807,9 @@
         return this->priv_insert(position, value);
     }
 
- //! @pre position must be a valid iterator of *this in range [begin(), end()]
- //! and size() + count <= Capacity.
+ //! @pre
+ //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
+ //! @li <tt>size() + count <= Capacity</tt>
     //!
     //! @brief Inserts a count copies of value at position.
     //!
@@ -859,19 +864,20 @@
         return position;
     }
 
- //! @pre position must be a valid iterator of *this in range [begin(), end()]
- //! and distance(first, last) <= Capacity.
- //! Iterator must meet the ForwardTraversal Iterator concept
+ //! @pre
+ //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
+ //! @li <tt>distance(first, last) <= Capacity</tt>
+ //! @li \c Iterator must meet the \cForwardTraversalIterator concept.
     //!
- //! @brief Inserts a copy of a range [first, last) at position.
+ //! @brief Inserts a copy of a range <tt>[first, last)</tt> at position.
     //!
     //! @param position The position at which new elements will be inserted.
     //! @param first The iterator to the first element of a range used to construct new elements.
     //! @param last The iterator to the one after the last element of a range used to construct new elements.
     //!
     //! @par Throws
- //! @li If Value's constructor and assignment taking a dereferenced Iterator.
- //! @li If Value's move constructor or move assignment throws. //!
+ //! @li If Value's constructor and assignment taking a dereferenced \c Iterator.
+ //! @li If Value's move constructor or move assignment throws.
     //! @internal
     //! @li If a throwing error handler is specified, throws when the capacity is exceeded. (not by default).
     //! @endinternal
@@ -889,7 +895,7 @@
         return position;
     }
 
- //! @pre position must be a valid iterator of *this in range [begin(), end()).
+ //! @pre \c position must be a valid iterator of \c *this in range <tt>[begin(), end())</tt>
     //!
     //! @brief Erases Value from position.
     //!
@@ -916,9 +922,11 @@
         return position;
     }
 
- //! @pre first and last must define a valid range, iterators must be in range [begin(), end()].
+ //! @pre
+ //! @li \c first and \c last must define a valid range
+ //! @li iterators must be in range <tt>[begin(), end()]</tt>
     //!
- //! @brief Erases Values from a range [first, last).
+ //! @brief Erases Values from a range <tt>[first, last)</tt>.
     //!
     //! @param first The position of the first element of a range which will be erased from the container.
     //! @param last The position of the one after the last element of a range which will be erased from the container.
@@ -949,9 +957,9 @@
         return first;
     }
 
- //! @pre distance(first, last) <= Capacity.
+ //! @pre <tt>distance(first, last) <= Capacity</tt>
     //!
- //! @brief Assigns a range [first, last) of Values to this container.
+ //! @brief Assigns a range <tt>[first, last)</tt> of Values to this container.
     //!
     //! @param first The iterator to the first element of a range used to construct new content of this container.
     //! @param last The iterator to the one after the last element of a range used to construct new content of this container.
@@ -970,7 +978,7 @@
         this->assign_dispatch(first, last, traversal()); // may throw
     }
 
- //! @pre count <= Capacity.
+ //! @pre <tt>count <= Capacity</tt>
     //!
     //! @brief Assigns a count copies of value to this container.
     //!
@@ -1003,10 +1011,10 @@
 
 #if !defined(BOOST_CONTAINER_STATIC_VECTOR_DISABLE_EMPLACE)
 #if defined(BOOST_CONTAINER_PERFECT_FORWARDING) || defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
- //! @pre size() < Capacity.
+ //! @pre <tt>size() < Capacity</tt>
     //!
     //! @brief Inserts a Value constructed with
- //! std::forward<Args>(args)... in the end of the container.
+ //! \c std::forward<Args>(args)... in the end of the container.
     //!
     //! @param args The arguments of the constructor of the new element which will be created at the end of the container.
     //!
@@ -1028,18 +1036,18 @@
         ++m_size; // update end
     }
 
- //! @pre position must be a valid iterator of *this in range [begin(), end()]
- //! and size() < Capacity.
+ //! @pre
+ //! @li \c position must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>
+ //! @li <tt>size() < Capacity</tt>
     //!
     //! @brief Inserts a Value constructed with
- //! std::forward<Args>(args)... before position
+ //! \c std::forward<Args>(args)... before position
     //!
     //! @param position The position at which new elements will be inserted.
     //! @param args The arguments of the constructor of the new element.
     //!
     //! @par Throws
- //! If in-place constructor throws or Value's move
- //! constructor or move assignment throws.
+ //! If in-place constructor throws or if Value's move constructor or move assignment throws.
     //! @internal
     //! @li If a throwing error handler is specified, throws when the capacity is exceeded. (not by default).
     //! @endinternal
@@ -1149,7 +1157,7 @@
         m_size = 0; // update end
     }
 
- //! @pre i < size().
+ //! @pre <tt>i < size()</tt>
     //!
     //! @brief Returns reference to the i-th element.
     //!
@@ -1159,7 +1167,7 @@
     //! from the beginning of the container.
     //!
     //! @par Throws
- //! std::out_of_range exception by default.
+ //! \c std::out_of_range exception by default.
     //!
     //! @par Complexity
     //! Constant O(1).
@@ -1169,7 +1177,7 @@
         return *(this->begin() + i);
     }
 
- //! @pre i < size().
+ //! @pre <tt>i < size()</tt>
     //!
     //! @brief Returns const reference to the i-th element.
     //!
@@ -1179,7 +1187,7 @@
     //! from the beginning of the container.
     //!
     //! @par Throws
- //! std::out_of_range exception by default.
+ //! \c std::out_of_range exception by default.
     //!
     //! @par Complexity
     //! Constant O(1).
@@ -1189,7 +1197,7 @@
         return *(this->begin() + i);
     }
 
- //! @pre i < size().
+ //! @pre <tt>i < size()</tt>
     //!
     //! @brief Returns reference to the i-th element.
     //!
@@ -1210,7 +1218,7 @@
         return *(this->begin() + i);
     }
 
- //! @pre i < size().
+ //! @pre <tt>i < size()</tt>
     //!
     //! @brief Returns const reference to the i-th element.
     //!
@@ -1230,7 +1238,7 @@
         return *(this->begin() + i);
     }
 
- //! @pre !empty().
+ //! @pre \c !empty()
     //!
     //! @brief Returns reference to the first element.
     //!
@@ -1248,7 +1256,7 @@
         return *(this->begin());
     }
 
- //! @pre !empty().
+ //! @pre \c !empty()
     //!
     //! @brief Returns const reference to the first element.
     //!
@@ -1266,7 +1274,7 @@
         return *(this->begin());
     }
 
- //! @pre !empty().
+ //! @pre \c !empty()
     //!
     //! @brief Returns reference to the last element.
     //!
@@ -1284,7 +1292,7 @@
         return *(this->end() - 1);
     }
 
- //! @pre !empty().
+ //! @pre \c !empty()
     //!
     //! @brief Returns const reference to the first element.
     //!
@@ -1302,8 +1310,8 @@
         return *(this->end() - 1);
     }
 
- //! @brief Pointer such that [data(), data() + size()) is a valid range.
- //! For a non-empty vector, data() == &front().
+ //! @brief Pointer such that <tt>[data(), data() + size())</tt> is a valid range.
+ //! For a non-empty vector <tt>data() == &front()</tt>.
     //!
     //! @par Throws
     //! Nothing.
@@ -1315,8 +1323,8 @@
         return boost::addressof(*(this->ptr()));
     }
 
- //! @brief Const pointer such that [data(), data() + size()) is a valid range.
- //! For a non-empty vector, data() == &front().
+ //! @brief Const pointer such that <tt>[data(), data() + size())</tt> is a valid range.
+ //! For a non-empty vector <tt>data() == &front()</tt>.
     //!
     //! @par Throws
     //! Nothing.

Modified: sandbox/static_vector/doc/Doxyfile
==============================================================================
--- sandbox/static_vector/doc/Doxyfile (original)
+++ sandbox/static_vector/doc/Doxyfile 2013-01-10 19:59:43 EST (Thu, 10 Jan 2013)
@@ -758,7 +758,7 @@
 # directories that contain example code fragments that are included (see
 # the \include command).
 
-EXAMPLE_PATH = "."
+EXAMPLE_PATH = "../example"
 
 # If the value of the EXAMPLE_PATH tag contains directories, you can use the
 # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp

Modified: sandbox/static_vector/doc/generated/static_vector.qbk
==============================================================================
--- sandbox/static_vector/doc/generated/static_vector.qbk (original)
+++ sandbox/static_vector/doc/generated/static_vector.qbk 2013-01-10 19:59:43 EST (Thu, 10 Jan 2013)
@@ -3,18 +3,13 @@
 [section:boost_container_static_vector boost::container::static_vector]
 
 '''<indexterm><primary>boost</primary></indexterm><indexterm><primary>container</primary></indexterm><indexterm><primary>static_vector</primary></indexterm>'''
-A hybrid of boost::container::vector and boost::array.
+A hybrid of [^boost::container::vector] and [^boost::array].
 
 [heading Description]
 static\u005fvector is a sequence container like boost::container::vector with contiguous storage that can change in size, along with the static allocation, low overhead, and fixed capacity of boost::array.
 
 A static\u005fvector is a sequence that supports random access to elements, constant time insertion and removal of elements at the end, and linear time insertion and removal of elements at the beginning or in the middle. The number of elements in a static\u005fvector may vary dynamically up to a fixed capacity because elements are stored within the object itself similarly to an array. However, objects are initialized as they are inserted into static\u005fvector unlike C arrays or std::array which must construct all elements on instantiation. The behavior of static\u005fvector enables the use of statically allocated elements in cases with complex object lifetime requirements that would otherwise not be trivially possible.
 
-[heading Error Handling]
-Insertion beyond the capacity and out of bounds errors result in undefined behavior unless otherwise specified. In this respect if size() == capacity(), then static_vector::push_back() behaves like std::vector pop_front() if size() == empty(). The reason for this difference is because unlike vectors, static_vector does not perform allocation.
-[heading Advanced Usage]
-Error handling behavior can be modified to more closely match std::vector exception behavior when exceeding bounds by providing an alternate Strategy and static_vector_traits instantiation.
-
 [heading Header]
 `#include <boost/container/static_vector.hpp>`
 
@@ -31,9 +26,9 @@
 [heading Template parameter(s)]
 [table
 [[Parameter] [Description]]
-[[`Value`][the type of element that will be stored. ]]
-[[`std::size_t Capacity`][the maximum number of elements static_vector can store, fixed at compile time. ]]
-[[`Strategy`][defines the public typedefs and error handlers, implements StaticVectorStrategy and has some similarities to an Allocator.]]
+[[`Value`][The type of element that will be stored. ]]
+[[`std::size_t Capacity`][The maximum number of elements static_vector can store, fixed at compile time. ]]
+[[`Strategy`][Defines the public typedefs and error handlers, implements StaticVectorStrategy and has some similarities to an Allocator. ]]
 ]
 
 [heading Typedef(s)]
@@ -59,7 +54,7 @@
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member0 `static_vector()`]][Constructs an empty static_vector. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member1 `static_vector(size_type)`]][Constructs a static_vector containing count default constructed Values. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member2 `static_vector(size_type, value_type const &)`]][Constructs a static_vector containing count copies of value. ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member3 `static_vector(Iterator, Iterator)`]][Constructs a static_vector containing copy of a range [first, last). ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member3 `static_vector(Iterator, Iterator)`]][Constructs a static_vector containing copy of a range [^[first, last)]. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member4 `static_vector(static_vector const &)`]][Constructs a copy of other static_vector. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member5 `static_vector(static_vector<...> const &)`]][Constructs a copy of other static_vector. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member8 `static_vector(static_vector &&)`]][Move constructor. Moves Values stored in the other static_vector to this one. ]]
@@ -85,13 +80,13 @@
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member21 `insert(iterator, value_type const &)`]][Inserts a copy of element at position. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member22 `insert(iterator, value_type &&)`]][Inserts a move-constructed element at position. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member23 `insert(iterator, size_type, value_type const &)`]][Inserts a count copies of value at position. ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member24 `insert(iterator, Iterator, Iterator)`]][Inserts a copy of a range [first, last) at position. ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member24 `insert(iterator, Iterator, Iterator)`]][Inserts a copy of a range [^[first, last)] at position. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member25 `erase(iterator)`]][Erases Value from position. ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member26 `erase(iterator, iterator)`]][Erases Values from a range [first, last). ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member27 `assign(Iterator, Iterator)`]][Assigns a range [first, last) of Values to this container. ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member26 `erase(iterator, iterator)`]][Erases Values from a range [^[first, last)]. ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member27 `assign(Iterator, Iterator)`]][Assigns a range [^[first, last)] of Values to this container. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member28 `assign(size_type, value_type const &)`]][Assigns a count copies of value to this container. ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member29 `emplace_back(Args &&...)`]][Inserts a Value constructed with std::forward<Args>(args)... in the end of the container. ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member30 `emplace(iterator, Args &&...)`]][Inserts a Value constructed with std::forward<Args>(args)... before position. ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member29 `emplace_back(Args &&...)`]][Inserts a Value constructed with [^std::forward<Args>(args)]... in the end of the container. ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member30 `emplace(iterator, Args &&...)`]][Inserts a Value constructed with [^std::forward<Args>(args)]... before position. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member31 `clear()`]][Removes all elements from the container. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member32 `at(size_type)`]][Returns reference to the i-th element. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member33 `at(size_type)`]][Returns const reference to the i-th element. ]]
@@ -101,8 +96,8 @@
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member37 `front()`]][Returns const reference to the first element. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member38 `back()`]][Returns reference to the last element. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member39 `back()`]][Returns const reference to the first element. ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member40 `data()`]][Pointer such that [data(), data() + size()) is a valid range. For a non-empty vector, data() == &front(). ]]
-[[[link staticvector.static_vector.reference.boost_container_static_vector.member41 `data()`]][Const pointer such that [data(), data() + size()) is a valid range. For a non-empty vector, data() == &front(). ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member40 `data()`]][Pointer such that [^[data(), data() + size())] is a valid range. For a non-empty vector [^data() == &front()]. ]]
+[[[link staticvector.static_vector.reference.boost_container_static_vector.member41 `data()`]][Const pointer such that [^[data(), data() + size())] is a valid range. For a non-empty vector [^data() == &front()]. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member42 `begin()`]][Returns iterator to the first element. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member43 `begin()`]][Returns const iterator to the first element. ]]
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member44 `cbegin()`]][Returns const iterator to the first element. ]]
@@ -122,1058 +117,1227 @@
 [[[link staticvector.static_vector.reference.boost_container_static_vector.member58 `shrink_to_fit()`]][Capacity is fixed so this call has no effects. ]]
 ]
 
-[br]
 [section:member0 static_vector()]
-Constructs an empty static_vector. [heading Synopsis]
+Constructs an empty static_vector.
+
+[heading Synopsis]
 ``static_vector()``
 
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member1 static_vector(size_type)]
-Constructs a static_vector containing count default constructed Values. [heading Synopsis]
+Constructs a static_vector containing count default constructed Values.
+
+[heading Synopsis]
 ``static_vector(size_type count)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `count` ][The number of values which will be contained in the container.]]
 ]
-[heading Precondition]
-count <= Capacity.
+[heading Precondition(s)]
+[^count <= Capacity]
+
 [heading Throws]
 If Value's default constructor throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member2 static_vector(size_type, value_type const &)]
-Constructs a static_vector containing count copies of value. [heading Synopsis]
+Constructs a static_vector containing count copies of value.
+
+[heading Synopsis]
 ``static_vector(size_type count, value_type const & value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `count` ][The number of copies of a values that will be contained in the container. ]]
 [[ `value_type const &` ][ `value` ][The value which will be used to copy construct values.]]
 ]
-[heading Precondition]
-count <= Capacity.
+[heading Precondition(s)]
+[^count <= Capacity]
+
 [heading Throws]
 If Value's copy constructor throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member3 static_vector(Iterator, Iterator)]
-Constructs a static_vector containing copy of a range [first, last). [heading Synopsis]
+Constructs a static_vector containing copy of a range [^[first, last)].
+
+[heading Synopsis]
 ``template<typename Iterator>
 static_vector(Iterator first, Iterator last)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `Iterator` ][ `first` ][The iterator to the first element in range. ]]
 [[ `Iterator` ][ `last` ][The iterator to the one after the last element in range.]]
 ]
-[heading Precondition]
-distance(first, last) <= Capacity. Iterator must meet the ForwardTraversal Iterator concept
+[heading Precondition(s)]
+
+* [^distance(first, last) <= Capacity]
+* Iterator must meet the [^ForwardTraversalIterator] concept.
+
+
+
 [heading Throws]
 If Value's constructor taking a dereferenced Iterator throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member4 static_vector(static_vector const &)]
-Constructs a copy of other static_vector. [heading Synopsis]
+Constructs a copy of other static_vector.
+
+[heading Synopsis]
 ``static_vector(static_vector const & other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector const &` ][ `other` ][The static_vector which content will be copied to this one.]]
 ]
 [heading Throws]
 If Value's copy constructor throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member5 static_vector(static_vector<...> const &)]
-Constructs a copy of other static_vector. [heading Synopsis]
+Constructs a copy of other static_vector.
+
+[heading Synopsis]
 ``template<std::size_t C, typename S>
 static_vector(static_vector< value_type, C, S > const & other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector< value_type, C, S > const &` ][ `other` ][The static_vector which content will be copied to this one.]]
 ]
-[heading Precondition]
-other.size() <= Capacity.
+[heading Precondition(s)]
+[^other.size() <= Capacity].
+
 [heading Throws]
 If Value's copy constructor throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member8 static_vector(static_vector &&)]
-Move constructor. Moves Values stored in the other static_vector to this one. [heading Synopsis]
+Move constructor. Moves Values stored in the other static_vector to this one.
+
+[heading Synopsis]
 ``static_vector(static_vector && other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector &&` ][ `other` ][The static_vector which content will be moved to this one.]]
 ]
 [heading Throws]
 
+* If [^boost::has_nothrow_move<Value>::value] is [^true] and Value's move constructor throws.
+* If [^boost::has_nothrow_move<Value>::value] is [^false] and Value's copy constructor throws.
+
 
-* If boost::has_nothrow_move<Value>::value is true and Value's move constructor throws.
-* If boost::has_nothrow_move<Value>::value is false and Value's copy constructor throws.
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member9 static_vector(static_vector<...> &&)]
-Move constructor. Moves Values stored in the other static_vector to this one. [heading Synopsis]
+Move constructor. Moves Values stored in the other static_vector to this one.
+
+[heading Synopsis]
 ``template<std::size_t C, typename S>
 static_vector(static_vector< value_type, C, S > && other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector< value_type, C, S > &&` ][ `other` ][The static_vector which content will be moved to this one.]]
 ]
-[heading Precondition]
-other.size() <= Capacity.
+[heading Precondition(s)]
+[^other.size() <= Capacity]
+
 [heading Throws]
 
+* If [^boost::has_nothrow_move<Value>::value] is [^true] and Value's move constructor throws.
+* If [^boost::has_nothrow_move<Value>::value] is [^false] and Value's copy constructor throws.
+
 
-* If boost::has_nothrow_move<Value>::value is true and Value's move constructor throws.
-* If boost::has_nothrow_move<Value>::value is false and Value's copy constructor throws.
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member12 ~static_vector()]
-Destructor. Destroys Values stored in this container. [heading Synopsis]
+Destructor. Destroys Values stored in this container.
+
+[heading Synopsis]
 ``~static_vector()``
 
 [heading Throws]
 Nothing
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member6 operator=(const static_vector &)]
-Copy assigns Values stored in the other static_vector to this one. [heading Synopsis]
+Copy assigns Values stored in the other static_vector to this one.
+
+[heading Synopsis]
 ``static_vector & operator=(const static_vector & other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `const static_vector &` ][ `other` ][The static_vector which content will be copied to this one.]]
 ]
 [heading Throws]
 If Value's copy constructor or copy assignment throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member7 operator=(static_vector<...> const &)]
-Copy assigns Values stored in the other static_vector to this one. [heading Synopsis]
+Copy assigns Values stored in the other static_vector to this one.
+
+[heading Synopsis]
 ``template<std::size_t C, typename S>
 static_vector & operator=(static_vector< value_type, C, S > const & other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector< value_type, C, S > const &` ][ `other` ][The static_vector which content will be copied to this one.]]
 ]
-[heading Precondition]
-other.size() <= Capacity.
+[heading Precondition(s)]
+[^other.size() <= Capacity]
+
 [heading Throws]
 If Value's copy constructor or copy assignment throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member10 operator=(static_vector &&)]
-Move assignment. Moves Values stored in the other static_vector to this one. [heading Synopsis]
+Move assignment. Moves Values stored in the other static_vector to this one.
+
+[heading Synopsis]
 ``static_vector & operator=(static_vector && other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector &&` ][ `other` ][The static_vector which content will be moved to this one.]]
 ]
 [heading Throws]
 
+* If [^boost::has_nothrow_move<Value>::value] is [^true] and Value's move constructor or move assignment throws.
+* If [^boost::has_nothrow_move<Value>::value] is [^false] and Value's copy constructor or copy assignment throws.
+
 
-* If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws.
-* If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws.
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member11 operator=(static_vector<...> &&)]
-Move assignment. Moves Values stored in the other static_vector to this one. [heading Synopsis]
+Move assignment. Moves Values stored in the other static_vector to this one.
+
+[heading Synopsis]
 ``template<std::size_t C, typename S>
 static_vector & operator=(static_vector< value_type, C, S > && other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector< value_type, C, S > &&` ][ `other` ][The static_vector which content will be moved to this one.]]
 ]
-[heading Precondition]
-other.size() <= Capacity.
+[heading Precondition(s)]
+[^other.size() <= Capacity]
+
 [heading Throws]
 
+* If [^boost::has_nothrow_move<Value>::value] is [^true] and Value's move constructor or move assignment throws.
+* If [^boost::has_nothrow_move<Value>::value] is [^false] and Value's copy constructor or copy assignment throws.
+
 
-* If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws.
-* If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws.
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member13 swap(static_vector &)]
-Swaps contents of the other static_vector and this one. [heading Synopsis]
+Swaps contents of the other static_vector and this one.
+
+[heading Synopsis]
 ``void swap(static_vector & other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector &` ][ `other` ][The static_vector which content will be swapped with this one's content.]]
 ]
 [heading Throws]
 
+* If [^boost::has_nothrow_move<Value>::value] is [^true] and Value's move constructor or move assignment throws,
+* If [^boost::has_nothrow_move<Value>::value] is [^false] and Value's copy constructor or copy assignment throws,
+
 
-* If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws,
-* If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws,
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member14 swap(static_vector<...> &)]
-Swaps contents of the other static_vector and this one. [heading Synopsis]
+Swaps contents of the other static_vector and this one.
+
+[heading Synopsis]
 ``template<std::size_t C, typename S>
 void swap(static_vector< value_type, C, S > & other)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `static_vector< value_type, C, S > &` ][ `other` ][The static_vector which content will be swapped with this one's content.]]
 ]
-[heading Precondition]
-other.size() <= Capacity && size() <= other.capacity().
+[heading Precondition(s)]
+[^other.size() <= Capacity && size() <= other.capacity()]
+
 [heading Throws]
 
+* If [^boost::has_nothrow_move<Value>::value] is [^true] and Value's move constructor or move assignment throws,
+* If [^boost::has_nothrow_move<Value>::value] is [^false] and Value's copy constructor or copy assignment throws,
+
 
-* If boost::has_nothrow_move<Value>::value is true and Value's move constructor or move assignment throws,
-* If boost::has_nothrow_move<Value>::value is false and Value's copy constructor or copy assignment throws,
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member15 resize(size_type)]
-Inserts or erases elements at the end such that the size becomes count. New elements are default constructed. [heading Synopsis]
+Inserts or erases elements at the end such that the size becomes count. New elements are default constructed.
+
+[heading Synopsis]
 ``void resize(size_type count)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `count` ][The number of elements which will be stored in the container.]]
 ]
-[heading Precondition]
-count <= Capacity.
+[heading Precondition(s)]
+[^count <= Capacity]
+
 [heading Throws]
 If Value's default constructor throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member16 resize(size_type, value_type const &)]
-Inserts or erases elements at the end such that the size becomes count. New elements are copy constructed from value. [heading Synopsis]
+Inserts or erases elements at the end such that the size becomes count. New elements are copy constructed from value.
+
+[heading Synopsis]
 ``void resize(size_type count, value_type const & value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `count` ][The number of elements which will be stored in the container. ]]
 [[ `value_type const &` ][ `value` ][The value used to copy construct the new element.]]
 ]
-[heading Precondition]
-count <= Capacity.
+[heading Precondition(s)]
+[^count <= Capacity]
+
 [heading Throws]
 If Value's copy constructor throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member17 reserve(size_type)]
-This call has no effect because the Capacity of this container is constant. [heading Synopsis]
+This call has no effect because the Capacity of this container is constant.
+
+[heading Synopsis]
 ``void reserve(size_type count)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `count` ][The number of elements which the container should be able to contain.]]
 ]
-[heading Precondition]
-count <= Capacity.
+[heading Precondition(s)]
+[^count <= Capacity]
+
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member18 push_back(value_type const &)]
-Adds a copy of value at the end. [heading Synopsis]
+Adds a copy of value at the end.
+
+[heading Synopsis]
 ``void push_back(value_type const & value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `value_type const &` ][ `value` ][The value used to copy construct the new element.]]
 ]
-[heading Precondition]
-size() < Capacity.
+[heading Precondition(s)]
+[^size() < Capacity]
+
 [heading Throws]
 If Value's copy constructor throws.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member19 push_back(value_type &&)]
-Moves value to the end. [heading Synopsis]
+Moves value to the end.
+
+[heading Synopsis]
 ``void push_back(value_type && value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `value_type &&` ][ `value` ][The value to move construct the new element.]]
 ]
-[heading Precondition]
-size() < Capacity.
+[heading Precondition(s)]
+[^size() < Capacity]
+
 [heading Throws]
 If Value's move constructor throws.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member20 pop_back()]
-Destroys last value and decreases the size. [heading Synopsis]
+Destroys last value and decreases the size.
+
+[heading Synopsis]
 ``void pop_back()``
 
-[heading Precondition]
-!empty().
+[heading Precondition(s)]
+[^!empty()]
+
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member21 insert(iterator, value_type const &)]
-Inserts a copy of element at position. [heading Synopsis]
+Inserts a copy of element at position.
+
+[heading Synopsis]
 ``iterator insert(iterator position, value_type const & value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `position` ][The position at which the new value will be inserted. ]]
 [[ `value_type const &` ][ `value` ][The value used to copy construct the new element.]]
 ]
-[heading Precondition]
-position must be a valid iterator of *this in range [begin(), end()].
-[heading Throws]
+[heading Precondition(s)]
+
+* [^position] must be a valid iterator of [^*this] in range [^[begin(), end()]].
+* [^size() < Capacity]
+
 
 
+[heading Throws]
+
 * If Value's copy constructor or copy assignment throws
 * If Value's move constructor or move assignment throws.
 
-[/]
+
+
 [heading Complexity]
-Constant or linear.
+Constant or linear.
 
 [endsect]
-[br]
 
 [section:member22 insert(iterator, value_type &&)]
-Inserts a move-constructed element at position. [heading Synopsis]
+Inserts a move-constructed element at position.
+
+[heading Synopsis]
 ``iterator insert(iterator position, value_type && value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `position` ][The position at which the new value will be inserted. ]]
 [[ `value_type &&` ][ `value` ][The value used to move construct the new element.]]
 ]
-[heading Precondition]
-position must be a valid iterator of *this in range [begin(), end()] and size() < Capacity.
+[heading Precondition(s)]
+
+* [^position] must be a valid iterator of [^*this] in range [^[begin(), end()]].
+* [^size() < Capacity]
+
+
+
 [heading Throws]
 If Value's move constructor or move assignment throws.
+
 [heading Complexity]
-Constant or linear.
+Constant or linear.
 
 [endsect]
-[br]
 
 [section:member23 insert(iterator, size_type, value_type const &)]
-Inserts a count copies of value at position. [heading Synopsis]
+Inserts a count copies of value at position.
+
+[heading Synopsis]
 ``iterator insert(iterator position,
                 size_type count,
                 value_type const & value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `position` ][The position at which new elements will be inserted. ]]
 [[ `size_type` ][ `count` ][The number of new elements which will be inserted. ]]
 [[ `value_type const &` ][ `value` ][The value used to copy construct new elements.]]
 ]
-[heading Precondition]
-position must be a valid iterator of *this in range [begin(), end()] and size() + count <= Capacity.
-[heading Throws]
+[heading Precondition(s)]
+
+* [^position] must be a valid iterator of [^*this] in range [^[begin(), end()]].
+* [^size() + count <= Capacity]
 
 
+
+[heading Throws]
+
 * If Value's copy constructor or copy assignment throws.
 * If Value's move constructor or move assignment throws.
 
-[/]
+
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member24 insert(iterator, Iterator, Iterator)]
-Inserts a copy of a range [first, last) at position. [heading Synopsis]
+Inserts a copy of a range [^[first, last)] at position.
+
+[heading Synopsis]
 ``template<typename Iterator>
 iterator insert(iterator position,
                 Iterator first,
                 Iterator last)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `position` ][The position at which new elements will be inserted. ]]
 [[ `Iterator` ][ `first` ][The iterator to the first element of a range used to construct new elements. ]]
 [[ `Iterator` ][ `last` ][The iterator to the one after the last element of a range used to construct new elements.]]
 ]
-[heading Precondition]
-position must be a valid iterator of *this in range [begin(), end()] and distance(first, last) <= Capacity. Iterator must meet the ForwardTraversal Iterator concept
+[heading Precondition(s)]
+
+* [^position] must be a valid iterator of [^*this] in range [^[begin(), end()]].
+* [^distance(first, last) <= Capacity]
+* [^Iterator] must meet the concept.
+
+
+
 [heading Throws]
 
+* If Value's constructor and assignment taking a dereferenced [^Iterator].
+* If Value's move constructor or move assignment throws.
+
 
-* If Value's constructor and assignment taking a dereferenced Iterator.
-* If Value's move constructor or move assignment throws. //!
 
-[/]
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member25 erase(iterator)]
-Erases Value from position. [heading Synopsis]
+Erases Value from position.
+
+[heading Synopsis]
 ``iterator erase(iterator position)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `position` ][The position of the element which will be erased from the container.]]
 ]
-[heading Precondition]
-position must be a valid iterator of *this in range [begin(), end()).
+[heading Precondition(s)]
+[^position] must be a valid iterator of [^*this] in range [^[begin(), end())]
+
 [heading Throws]
 If Value's move assignment throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member26 erase(iterator, iterator)]
-Erases Values from a range [first, last). [heading Synopsis]
+Erases Values from a range [^[first, last)].
+
+[heading Synopsis]
 ``iterator erase(iterator first, iterator last)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `first` ][The position of the first element of a range which will be erased from the container. ]]
 [[ `iterator` ][ `last` ][The position of the one after the last element of a range which will be erased from the container.]]
 ]
-[heading Precondition]
-first and last must define a valid range, iterators must be in range [begin(), end()].
+[heading Precondition(s)]
+
+* [^first] and [^last] must define a valid range
+* iterators must be in range [^[begin(), end()]]
+
+
+
 [heading Throws]
 If Value's move assignment throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member27 assign(Iterator, Iterator)]
-Assigns a range [first, last) of Values to this container. [heading Synopsis]
+Assigns a range [^[first, last)] of Values to this container.
+
+[heading Synopsis]
 ``template<typename Iterator>
 void assign(Iterator first, Iterator last)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `Iterator` ][ `first` ][The iterator to the first element of a range used to construct new content of this container. ]]
 [[ `Iterator` ][ `last` ][The iterator to the one after the last element of a range used to construct new content of this container.]]
 ]
-[heading Precondition]
-distance(first, last) <= Capacity.
+[heading Precondition(s)]
+[^distance(first, last) <= Capacity]
+
 [heading Throws]
 If Value's copy constructor or copy assignment throws,
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member28 assign(size_type, value_type const &)]
-Assigns a count copies of value to this container. [heading Synopsis]
+Assigns a count copies of value to this container.
+
+[heading Synopsis]
 ``void assign(size_type count, value_type const & value)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `count` ][The new number of elements which will be container in the container. ]]
 [[ `value_type const &` ][ `value` ][The value which will be used to copy construct the new content.]]
 ]
-[heading Precondition]
-count <= Capacity.
+[heading Precondition(s)]
+[^count <= Capacity]
+
 [heading Throws]
 If Value's copy constructor or copy assignment throws.
+
 [heading Complexity]
-Linear O(N).
+Linear O(N).
 
 [endsect]
-[br]
 
 [section:member29 emplace_back(Args &&...)]
-Inserts a Value constructed with std::forward<Args>(args)... in the end of the container. [heading Synopsis]
+Inserts a Value constructed with [^std::forward<Args>(args)]... in the end of the container.
+
+[heading Synopsis]
 ``template<class... Args>
 void emplace_back(Args &&... args)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `Args &&...` ][ `args` ][The arguments of the constructor of the new element which will be created at the end of the container.]]
 ]
-[heading Precondition]
-size() < Capacity.
+[heading Precondition(s)]
+[^size() < Capacity]
+
 [heading Throws]
 If in-place constructor throws or Value's move constructor throws.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member30 emplace(iterator, Args &&...)]
-Inserts a Value constructed with std::forward<Args>(args)... before position. [heading Synopsis]
+Inserts a Value constructed with [^std::forward<Args>(args)]... before position.
+
+[heading Synopsis]
 ``template<class... Args>
 iterator emplace(iterator position, Args &&... args)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `iterator` ][ `position` ][The position at which new elements will be inserted. ]]
 [[ `Args &&...` ][ `args` ][The arguments of the constructor of the new element.]]
 ]
-[heading Precondition]
-position must be a valid iterator of *this in range [begin(), end()] and size() < Capacity.
+[heading Precondition(s)]
+
+* [^position] must be a valid iterator of [^*this] in range [^[begin(), end()]]
+* [^size() < Capacity]
+
+
+
 [heading Throws]
-If in-place constructor throws or Value's move constructor or move assignment throws.
+If in-place constructor throws or if Value's move constructor or move assignment throws.
+
 [heading Complexity]
-Constant or linear.
+Constant or linear.
 
 [endsect]
-[br]
 
 [section:member31 clear()]
-Removes all elements from the container. [heading Synopsis]
+Removes all elements from the container.
+
+[heading Synopsis]
 ``void clear()``
 
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member32 at(size_type)]
-Returns reference to the i-th element. [heading Synopsis]
+Returns reference to the i-th element.
+
+[heading Synopsis]
 ``reference at(size_type i)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `i` ][The element's index.]]
 ]
+[heading Precondition(s)]
+[^i < size()]
+
 [heading Returns]
 reference to the i-th element from the beginning of the container.
-[heading Precondition]
-i < size().
 [heading Throws]
-std::out_of_range exception by default.
+[^std::out_of_range] exception by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member33 at(size_type)]
-Returns const reference to the i-th element. [heading Synopsis]
+Returns const reference to the i-th element.
+
+[heading Synopsis]
 ``const_reference at(size_type i)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `i` ][The element's index.]]
 ]
+[heading Precondition(s)]
+[^i < size()]
+
 [heading Returns]
 const reference to the i-th element from the beginning of the container.
-[heading Precondition]
-i < size().
 [heading Throws]
-std::out_of_range exception by default.
+[^std::out_of_range] exception by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
-[section:member34 operator[](size_type)]
-Returns reference to the i-th element. [heading Synopsis]
+[section:member34 operator\[\](size_type)]
+Returns reference to the i-th element.
+
+[heading Synopsis]
 ``reference operator[](size_type i)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `i` ][The element's index.]]
 ]
+[heading Precondition(s)]
+[^i < size()]
+
 [heading Returns]
 reference to the i-th element from the beginning of the container.
-[heading Precondition]
-i < size().
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
-[section:member35 operator[](size_type)]
-Returns const reference to the i-th element. [heading Synopsis]
+[section:member35 operator\[\](size_type)]
+Returns const reference to the i-th element.
+
+[heading Synopsis]
 ``const_reference operator[](size_type i)``
 
-[heading Parameters]
+[heading Parameter(s)]
 [table
 [[Type][Name][Description]]
 [[ `size_type` ][ `i` ][The element's index.]]
 ]
+[heading Precondition(s)]
+[^i < size()]
+
 [heading Returns]
 const reference to the i-th element from the beginning of the container.
-[heading Precondition]
-i < size().
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member36 front()]
-Returns reference to the first element. [heading Synopsis]
+Returns reference to the first element.
+
+[heading Synopsis]
 ``reference front()``
 
+[heading Precondition(s)]
+[^!empty]()
+
 [heading Returns]
 reference to the first element from the beginning of the container.
-[heading Precondition]
-!empty().
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member37 front()]
-Returns const reference to the first element. [heading Synopsis]
+Returns const reference to the first element.
+
+[heading Synopsis]
 ``const_reference front()``
 
+[heading Precondition(s)]
+[^!empty]()
+
 [heading Returns]
 const reference to the first element from the beginning of the container.
-[heading Precondition]
-!empty().
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member38 back()]
-Returns reference to the last element. [heading Synopsis]
+Returns reference to the last element.
+
+[heading Synopsis]
 ``reference back()``
 
+[heading Precondition(s)]
+[^!empty]()
+
 [heading Returns]
 reference to the last element from the beginning of the container.
-[heading Precondition]
-!empty().
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member39 back()]
-Returns const reference to the first element. [heading Synopsis]
+Returns const reference to the first element.
+
+[heading Synopsis]
 ``const_reference back()``
 
+[heading Precondition(s)]
+[^!empty]()
+
 [heading Returns]
 const reference to the last element from the beginning of the container.
-[heading Precondition]
-!empty().
 [heading Throws]
 Nothing by default.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member40 data()]
-Pointer such that [data(), data() + size()) is a valid range. For a non-empty vector, data() == &front(). [heading Synopsis]
+Pointer such that [^[data(), data() + size())] is a valid range. For a non-empty vector [^data() == &front()].
+
+[heading Synopsis]
 ``Value * data()``
 
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member41 data()]
-Const pointer such that [data(), data() + size()) is a valid range. For a non-empty vector, data() == &front(). [heading Synopsis]
+Const pointer such that [^[data(), data() + size())] is a valid range. For a non-empty vector [^data() == &front()].
+
+[heading Synopsis]
 ``const Value * data()``
 
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member42 begin()]
-Returns iterator to the first element. [heading Synopsis]
+Returns iterator to the first element.
+
+[heading Synopsis]
 ``iterator begin()``
 
 [heading Returns]
 iterator to the first element contained in the vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member43 begin()]
-Returns const iterator to the first element. [heading Synopsis]
+Returns const iterator to the first element.
+
+[heading Synopsis]
 ``const_iterator begin()``
 
 [heading Returns]
 const_iterator to the first element contained in the vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member44 cbegin()]
-Returns const iterator to the first element. [heading Synopsis]
+Returns const iterator to the first element.
+
+[heading Synopsis]
 ``const_iterator cbegin()``
 
 [heading Returns]
 const_iterator to the first element contained in the vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member45 end()]
-Returns iterator to the one after the last element. [heading Synopsis]
+Returns iterator to the one after the last element.
+
+[heading Synopsis]
 ``iterator end()``
 
 [heading Returns]
 iterator pointing to the one after the last element contained in the vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member46 end()]
-Returns const iterator to the one after the last element. [heading Synopsis]
+Returns const iterator to the one after the last element.
+
+[heading Synopsis]
 ``const_iterator end()``
 
 [heading Returns]
 const_iterator pointing to the one after the last element contained in the vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member47 cend()]
-Returns const iterator to the one after the last element. [heading Synopsis]
+Returns const iterator to the one after the last element.
+
+[heading Synopsis]
 ``const_iterator cend()``
 
 [heading Returns]
 const_iterator pointing to the one after the last element contained in the vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member48 rbegin()]
-Returns reverse iterator to the first element of the reversed container. [heading Synopsis]
+Returns reverse iterator to the first element of the reversed container.
+
+[heading Synopsis]
 ``reverse_iterator rbegin()``
 
 [heading Returns]
 reverse_iterator pointing to the beginning of the reversed static_vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member49 rbegin()]
-Returns const reverse iterator to the first element of the reversed container. [heading Synopsis]
+Returns const reverse iterator to the first element of the reversed container.
+
+[heading Synopsis]
 ``const_reverse_iterator rbegin()``
 
 [heading Returns]
 const_reverse_iterator pointing to the beginning of the reversed static_vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member50 crbegin()]
-Returns const reverse iterator to the first element of the reversed container. [heading Synopsis]
+Returns const reverse iterator to the first element of the reversed container.
+
+[heading Synopsis]
 ``const_reverse_iterator crbegin()``
 
 [heading Returns]
 const_reverse_iterator pointing to the beginning of the reversed static_vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member51 rend()]
-Returns reverse iterator to the one after the last element of the reversed container. [heading Synopsis]
+Returns reverse iterator to the one after the last element of the reversed container.
+
+[heading Synopsis]
 ``reverse_iterator rend()``
 
 [heading Returns]
 reverse_iterator pointing to the one after the last element of the reversed static_vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member52 rend()]
-Returns const reverse iterator to the one after the last element of the reversed container. [heading Synopsis]
+Returns const reverse iterator to the one after the last element of the reversed container.
+
+[heading Synopsis]
 ``const_reverse_iterator rend()``
 
 [heading Returns]
 const_reverse_iterator pointing to the one after the last element of the reversed static_vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member53 crend()]
-Returns const reverse iterator to the one after the last element of the reversed container. [heading Synopsis]
+Returns const reverse iterator to the one after the last element of the reversed container.
+
+[heading Synopsis]
 ``const_reverse_iterator crend()``
 
 [heading Returns]
 const_reverse_iterator pointing to the one after the last element of the reversed static_vector.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member54 capacity()]
-Returns container's capacity. [heading Synopsis]
+Returns container's capacity.
+
+[heading Synopsis]
 ``size_type capacity()``
 
 [heading Returns]
 container's capacity.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member55 max_size()]
-Returns container's capacity. [heading Synopsis]
+Returns container's capacity.
+
+[heading Synopsis]
 ``size_type max_size()``
 
 [heading Returns]
 container's capacity.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member56 size()]
-Returns the number of stored elements. [heading Synopsis]
+Returns the number of stored elements.
+
+[heading Synopsis]
 ``size_type size()``
 
 [heading Returns]
 Number of elements contained in the container.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member57 empty()]
-Queries if the container contains elements. [heading Synopsis]
+Queries if the container contains elements.
+
+[heading Synopsis]
 ``bool empty()``
 
 [heading Returns]
 true if the number of elements contained in the container is equal to 0.
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [section:member58 shrink_to_fit()]
-Capacity is fixed so this call has no effects. [heading Synopsis]
+Capacity is fixed so this call has no effects.
+
+[heading Synopsis]
 ``void shrink_to_fit()``
 
 [heading Throws]
 Nothing.
+
 [heading Complexity]
-Constant O(1).
+Constant O(1).
 
 [endsect]
-[br]
 
 [endsect]
 

Modified: sandbox/static_vector/doc/html/index.html
==============================================================================
--- sandbox/static_vector/doc/html/index.html (original)
+++ sandbox/static_vector/doc/html/index.html 2013-01-10 19:59:43 EST (Thu, 10 Jan 2013)
@@ -49,7 +49,7 @@
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
-<td align="left"><p><small>Last revised: January 09, 2013 at 23:24:08 GMT</small></p></td>
+<td align="left"><p><small>Last revised: January 11, 2013 at 00:58:56 GMT</small></p></td>
 <td align="right"><div class="copyright-footer"></div></td>
 </tr></table>
 <hr>

Modified: sandbox/static_vector/doc/html/static_vector/static_vector/reference.html
==============================================================================
--- sandbox/static_vector/doc/html/static_vector/static_vector/reference.html (original)
+++ sandbox/static_vector/doc/html/static_vector/static_vector/reference.html 2013-01-10 19:59:43 EST (Thu, 10 Jan 2013)
@@ -31,8 +31,8 @@
 <a name="staticvector.static_vector.reference.boost_container_static_vector"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector" title="boost::container::static_vector">boost::container::static_vector</a>
 </h4></div></div></div>
 <p>
- <a class="indexterm" name="id889504"></a><a class="indexterm" name="id889509"></a><a class="indexterm" name="id889514"></a>
-A hybrid of boost::container::vector and boost::array.
+ <a class="indexterm" name="id885135"></a><a class="indexterm" name="id885140"></a><a class="indexterm" name="id885145"></a>
+A hybrid of <code class="literal">boost::container::vector</code> and <code class="literal">boost::array</code>.
         </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.h0"></a>
@@ -57,35 +57,13 @@
         </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.error_handling"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.error_handling">Error
- Handling</a>
- </h6>
-<p>
- Insertion beyond the capacity and out of bounds errors result in undefined
- behavior unless otherwise specified. In this respect if size() == capacity(),
- then static_vector::push_back() behaves like std::vector pop_front() if
- size() == empty(). The reason for this difference is because unlike vectors,
- static_vector does not perform allocation.
- </p>
-<h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.advanced_usage"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.advanced_usage">Advanced
- Usage</a>
- </h6>
-<p>
- Error handling behavior can be modified to more closely match std::vector
- exception behavior when exceeding bounds by providing an alternate Strategy
- and static_vector_traits instantiation.
- </p>
-<h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h3"></a>
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.header"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.header">Header</a>
         </h6>
 <p>
           <code class="computeroutput"><span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">container</span><span class="special">/</span><span class="identifier">static_vector</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code>
         </p>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h4"></a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h2"></a>
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.synopsis"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.synopsis">Synopsis</a>
         </h6>
 <p>
@@ -101,7 +79,7 @@
 <p>
         </p>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h5"></a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h3"></a>
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.template_parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.template_parameter_s_">Template
           parameter(s)</a>
         </h6>
@@ -131,7 +109,7 @@
                 </td>
 <td>
                   <p>
- the type of element that will be stored.
+ The type of element that will be stored.
                   </p>
                 </td>
 </tr>
@@ -143,7 +121,7 @@
                 </td>
 <td>
                   <p>
- the maximum number of elements static_vector can store, fixed
+ The maximum number of elements static_vector can store, fixed
                     at compile time.
                   </p>
                 </td>
@@ -156,7 +134,7 @@
                 </td>
 <td>
                   <p>
- defines the public typedefs and error handlers, implements StaticVectorStrategy
+ Defines the public typedefs and error handlers, implements StaticVectorStrategy
                     and has some similarities to an Allocator.
                   </p>
                 </td>
@@ -164,7 +142,7 @@
 </tbody>
 </table></div>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h6"></a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h4"></a>
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.typedef_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.typedef_s_">Typedef(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
@@ -332,7 +310,7 @@
 </tbody>
 </table></div>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h7"></a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h5"></a>
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.constructor_s__and_destructor"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.constructor_s__and_destructor">Constructor(s)
           and destructor</a>
         </h6>
@@ -402,8 +380,8 @@
                 </td>
 <td>
                   <p>
- Constructs a static_vector containing copy of a range [first,
- last).
+ Constructs a static_vector containing copy of a range <code class="literal">[first,
+ last)</code>.
                   </p>
                 </td>
 </tr>
@@ -475,7 +453,7 @@
 </tbody>
 </table></div>
 <h6>
-<a name="staticvector.static_vector.reference.boost_container_static_vector.h8"></a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.h6"></a>
           <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member_s_">Member(s)</a>
         </h6>
 <div class="informaltable"><table class="table">
@@ -706,7 +684,8 @@
                 </td>
 <td>
                   <p>
- Inserts a copy of a range [first, last) at position.
+ Inserts a copy of a range <code class="literal">[first, last)</code> at
+ position.
                   </p>
                 </td>
 </tr>
@@ -731,7 +710,7 @@
                 </td>
 <td>
                   <p>
- Erases Values from a range [first, last).
+ Erases Values from a range <code class="literal">[first, last)</code>.
                   </p>
                 </td>
 </tr>
@@ -744,7 +723,8 @@
                 </td>
 <td>
                   <p>
- Assigns a range [first, last) of Values to this container.
+ Assigns a range <code class="literal">[first, last)</code> of Values to
+ this container.
                   </p>
                 </td>
 </tr>
@@ -770,7 +750,7 @@
                 </td>
 <td>
                   <p>
- Inserts a Value constructed with std::forward&lt;Args&gt;(args)...
+ Inserts a Value constructed with <code class="literal">std::forward&lt;Args&gt;(args)</code>...
                     in the end of the container.
                   </p>
                 </td>
@@ -784,7 +764,7 @@
                 </td>
 <td>
                   <p>
- Inserts a Value constructed with std::forward&lt;Args&gt;(args)...
+ Inserts a Value constructed with <code class="literal">std::forward&lt;Args&gt;(args)</code>...
                     before position.
                   </p>
                 </td>
@@ -828,7 +808,7 @@
 <tr>
 <td>
                   <p>
- <a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34" title="operator["><code class="computeroutput"><span class="keyword">operator</span><span class="special">[](</span><span class="identifier">size_type</span><span class="special">)</span></code></a>
+ <a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34" title="operator[](size_type)"><code class="computeroutput"><span class="keyword">operator</span><span class="special">[](</span><span class="identifier">size_type</span><span class="special">)</span></code></a>
                   </p>
                 </td>
 <td>
@@ -840,7 +820,7 @@
 <tr>
 <td>
                   <p>
- <a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35" title="operator["><code class="computeroutput"><span class="keyword">operator</span><span class="special">[](</span><span class="identifier">size_type</span><span class="special">)</span></code></a>
+ <a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35" title="operator[](size_type)"><code class="computeroutput"><span class="keyword">operator</span><span class="special">[](</span><span class="identifier">size_type</span><span class="special">)</span></code></a>
                   </p>
                 </td>
 <td>
@@ -905,8 +885,8 @@
                 </td>
 <td>
                   <p>
- Pointer such that [data(), data() + size()) is a valid range.
- For a non-empty vector, data() == &amp;front().
+ Pointer such that <code class="literal">[data(), data() + size())</code>
+ is a valid range. For a non-empty vector <code class="literal">data() == &amp;front()</code>.
                   </p>
                 </td>
 </tr>
@@ -918,8 +898,8 @@
                 </td>
 <td>
                   <p>
- Const pointer such that [data(), data() + size()) is a valid
- range. For a non-empty vector, data() == &amp;front().
+ Const pointer such that <code class="literal">[data(), data() + size())</code>
+ is a valid range. For a non-empty vector <code class="literal">data() == &amp;front()</code>.
                   </p>
                 </td>
 </tr>
@@ -1135,9 +1115,6 @@
 </tr>
 </tbody>
 </table></div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member0"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member0" title="static_vector()">static_vector()</a>
@@ -1169,9 +1146,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1" title="static_vector(size_type)">static_vector(size_type)</a>
@@ -1190,7 +1164,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1235,10 +1209,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member1.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member1.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- count &lt;= Capacity.
+ <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member1.h3"></a>
@@ -1255,9 +1229,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2" title="static_vector(size_type, value_type const &amp;)">static_vector(size_type,
@@ -1277,7 +1248,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1342,10 +1313,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member2.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member2.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- count &lt;= Capacity.
+ <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member2.h3"></a>
@@ -1362,16 +1333,14 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3" title="static_vector(Iterator, Iterator)">static_vector(Iterator,
           Iterator)</a>
 </h5></div></div></div>
 <p>
- Constructs a static_vector containing copy of a range [first, last).
+ Constructs a static_vector containing copy of a range <code class="literal">[first,
+ last)</code>.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h0"></a>
@@ -1385,7 +1354,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1449,12 +1418,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- distance(first, last) &lt;= Capacity. Iterator must meet the ForwardTraversal
- Iterator concept
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">distance(first, last) &lt;= Capacity</code>
+ </li>
+<li class="listitem">
+ Iterator must meet the <code class="literal">ForwardTraversalIterator</code>
+ concept.
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member3.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member3.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member3.throws">Throws</a>
@@ -1470,9 +1444,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member4"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4" title="static_vector(static_vector const &amp;)">static_vector(static_vector
@@ -1492,7 +1463,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member4.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member4.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member4.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1550,9 +1521,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5" title="static_vector(static_vector&lt;...&gt; const &amp;)">static_vector(static_vector&lt;...&gt;
@@ -1573,7 +1541,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1620,10 +1588,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member5.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member5.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- other.size() &lt;= Capacity.
+ <code class="literal">other.size() &lt;= Capacity</code>.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member5.h3"></a>
@@ -1640,9 +1608,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member8"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8" title="static_vector(static_vector &amp;&amp;)">static_vector(static_vector
@@ -1663,7 +1628,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member8.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member8.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member8.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1712,12 +1677,12 @@
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is true and Value's
- move constructor throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">true</code> and Value's move constructor throws.
               </li>
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is false and Value's
- copy constructor throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">false</code> and Value's copy constructor throws.
               </li>
 </ul></div>
 <h6>
@@ -1728,9 +1693,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9" title="static_vector(static_vector&lt;...&gt; &amp;&amp;)">static_vector(static_vector&lt;...&gt;
@@ -1752,7 +1714,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1798,10 +1760,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member9.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member9.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- other.size() &lt;= Capacity.
+ <code class="literal">other.size() &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member9.h3"></a>
@@ -1809,12 +1771,12 @@
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is true and Value's
- move constructor throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">true</code> and Value's move constructor throws.
               </li>
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is false and Value's
- copy constructor throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">false</code> and Value's copy constructor throws.
               </li>
 </ul></div>
 <h6>
@@ -1825,9 +1787,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member12"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member12" title="~static_vector()">~static_vector()</a>
@@ -1859,9 +1818,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member6"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6" title="operator=(const static_vector &amp;)">operator=(const
@@ -1881,7 +1837,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member6.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member6.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member6.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -1940,9 +1896,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7" title="operator=(static_vector&lt;...&gt; const &amp;)">operator=(static_vector&lt;...&gt;
@@ -1963,7 +1916,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2010,10 +1963,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member7.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member7.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- other.size() &lt;= Capacity.
+ <code class="literal">other.size() &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member7.h3"></a>
@@ -2030,9 +1983,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member10"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10" title="operator=(static_vector &amp;&amp;)">operator=(static_vector
@@ -2053,7 +2003,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member10.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member10.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member10.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2102,12 +2052,14 @@
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is true and Value's
- move constructor or move assignment throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">true</code> and Value's move constructor or move assignment
+ throws.
               </li>
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is false and Value's
- copy constructor or copy assignment throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">false</code> and Value's copy constructor or copy
+ assignment throws.
               </li>
 </ul></div>
 <h6>
@@ -2118,9 +2070,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11" title="operator=(static_vector&lt;...&gt; &amp;&amp;)">operator=(static_vector&lt;...&gt;
@@ -2142,7 +2091,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2188,10 +2137,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member11.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member11.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- other.size() &lt;= Capacity.
+ <code class="literal">other.size() &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member11.h3"></a>
@@ -2199,12 +2148,14 @@
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is true and Value's
- move constructor or move assignment throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">true</code> and Value's move constructor or move assignment
+ throws.
               </li>
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is false and Value's
- copy constructor or copy assignment throws.
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">false</code> and Value's copy constructor or copy
+ assignment throws.
               </li>
 </ul></div>
 <h6>
@@ -2215,9 +2166,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member13"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13" title="swap(static_vector &amp;)">swap(static_vector
@@ -2237,7 +2185,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member13.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member13.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member13.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2287,12 +2235,14 @@
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is true and Value's
- move constructor or move assignment throws,
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">true</code> and Value's move constructor or move assignment
+ throws,
               </li>
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is false and Value's
- copy constructor or copy assignment throws,
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">false</code> and Value's copy constructor or copy
+ assignment throws,
               </li>
 </ul></div>
 <h6>
@@ -2303,9 +2253,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14" title="swap(static_vector&lt;...&gt; &amp;)">swap(static_vector&lt;...&gt;
@@ -2326,7 +2273,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2373,10 +2320,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member14.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member14.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- other.size() &lt;= Capacity &amp;&amp; size() &lt;= other.capacity().
+ <code class="literal">other.size() &lt;= Capacity &amp;&amp; size() &lt;= other.capacity()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member14.h3"></a>
@@ -2384,12 +2331,14 @@
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is true and Value's
- move constructor or move assignment throws,
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">true</code> and Value's move constructor or move assignment
+ throws,
               </li>
 <li class="listitem">
- If boost::has_nothrow_move&lt;Value&gt;::value is false and Value's
- copy constructor or copy assignment throws,
+ If <code class="literal">boost::has_nothrow_move&lt;Value&gt;::value</code>
+ is <code class="literal">false</code> and Value's copy constructor or copy
+ assignment throws,
               </li>
 </ul></div>
 <h6>
@@ -2400,9 +2349,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15" title="resize(size_type)">resize(size_type)</a>
@@ -2422,7 +2368,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2467,10 +2413,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member15.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member15.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- count &lt;= Capacity.
+ <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member15.h3"></a>
@@ -2487,9 +2433,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16" title="resize(size_type, value_type const &amp;)">resize(size_type,
@@ -2510,7 +2453,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2574,10 +2517,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member16.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member16.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- count &lt;= Capacity.
+ <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member16.h3"></a>
@@ -2594,9 +2537,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17" title="reserve(size_type)">reserve(size_type)</a>
@@ -2615,7 +2555,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2661,10 +2601,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member17.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member17.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- count &lt;= Capacity.
+ <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member17.h3"></a>
@@ -2681,9 +2621,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18" title="push_back(value_type const &amp;)">push_back(value_type
@@ -2703,7 +2640,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2748,10 +2685,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member18.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member18.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- size() &lt; Capacity.
+ <code class="literal">size() &lt; Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member18.h3"></a>
@@ -2768,9 +2705,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19" title="push_back(value_type &amp;&amp;)">push_back(value_type
@@ -2790,7 +2724,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2835,10 +2769,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member19.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member19.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- size() &lt; Capacity.
+ <code class="literal">size() &lt; Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member19.h3"></a>
@@ -2855,9 +2789,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20" title="pop_back()">pop_back()</a>
@@ -2876,10 +2807,10 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member20.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member20.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- !empty().
+ <code class="literal">!empty()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member20.h2"></a>
@@ -2896,9 +2827,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21" title="insert(iterator, value_type const &amp;)">insert(iterator,
@@ -2918,7 +2846,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -2982,11 +2910,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- position must be a valid iterator of *this in range [begin(), end()].
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
+ in range <code class="literal">[begin(), end()</code>].
+ </li>
+<li class="listitem">
+ <code class="literal">size() &lt; Capacity</code>
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member21.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member21.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member21.throws">Throws</a>
@@ -3007,9 +2941,6 @@
             Constant or linear.
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22" title="insert(iterator, value_type &amp;&amp;)">insert(iterator,
@@ -3029,7 +2960,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3093,12 +3024,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- position must be a valid iterator of *this in range [begin(), end()]
- and size() &lt; Capacity.
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
+ in range <code class="literal">[begin(), end()</code>].
+ </li>
+<li class="listitem">
+ <code class="literal">size() &lt; Capacity</code>
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member22.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member22.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member22.throws">Throws</a>
@@ -3114,9 +3050,6 @@
             Constant or linear.
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23" title="insert(iterator, size_type, value_type const &amp;)">insert(iterator,
@@ -3138,7 +3071,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3219,12 +3152,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- position must be a valid iterator of *this in range [begin(), end()]
- and size() + count &lt;= Capacity.
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
+ in range <code class="literal">[begin(), end()</code>].
+ </li>
+<li class="listitem">
+ <code class="literal">size() + count &lt;= Capacity</code>
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member23.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member23.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member23.throws">Throws</a>
@@ -3245,16 +3183,13 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24" title="insert(iterator, Iterator, Iterator)">insert(iterator,
           Iterator, Iterator)</a>
 </h5></div></div></div>
 <p>
- Inserts a copy of a range [first, last) at position.
+ Inserts a copy of a range <code class="literal">[first, last)</code> at position.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h0"></a>
@@ -3270,7 +3205,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3353,23 +3288,30 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- position must be a valid iterator of *this in range [begin(), end()]
- and distance(first, last) &lt;= Capacity. Iterator must meet the ForwardTraversal
- Iterator concept
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
+ in range <code class="literal">[begin(), end()</code>].
+ </li>
+<li class="listitem">
+ <code class="literal">distance(first, last) &lt;= Capacity</code>
+ </li>
+<li class="listitem">
+ <code class="literal">Iterator</code> must meet the concept.
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member24.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member24.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member24.throws">Throws</a>
           </h6>
 <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
 <li class="listitem">
- If Value's constructor and assignment taking a dereferenced Iterator.
+ If Value's constructor and assignment taking a dereferenced <code class="literal">Iterator</code>.
               </li>
 <li class="listitem">
- If Value's move constructor or move assignment throws. //!
+ If Value's move constructor or move assignment throws.
               </li>
 </ul></div>
 <h6>
@@ -3380,9 +3322,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25" title="erase(iterator)">erase(iterator)</a>
@@ -3401,7 +3340,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3446,10 +3385,11 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member25.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member25.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- position must be a valid iterator of *this in range [begin(), end()).
+ <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
+ in range <code class="literal">[begin(), end())</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member25.h3"></a>
@@ -3466,16 +3406,13 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26" title="erase(iterator, iterator)">erase(iterator,
           iterator)</a>
 </h5></div></div></div>
 <p>
- Erases Values from a range [first, last).
+ Erases Values from a range <code class="literal">[first, last)</code>.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h0"></a>
@@ -3488,7 +3425,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3554,12 +3491,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- first and last must define a valid range, iterators must be in range
- [begin(), end()].
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">first</code> and <code class="literal">last</code> must define
+ a valid range
+ </li>
+<li class="listitem">
+ iterators must be in range <code class="literal">[begin(), end()</code>]
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member26.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member26.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member26.throws">Throws</a>
@@ -3575,16 +3517,13 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27" title="assign(Iterator, Iterator)">assign(Iterator,
           Iterator)</a>
 </h5></div></div></div>
 <p>
- Assigns a range [first, last) of Values to this container.
+ Assigns a range <code class="literal">[first, last)</code> of Values to this container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h0"></a>
@@ -3598,7 +3537,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3664,10 +3603,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member27.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member27.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- distance(first, last) &lt;= Capacity.
+ <code class="literal">distance(first, last) &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member27.h3"></a>
@@ -3684,9 +3623,6 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28" title="assign(size_type, value_type const &amp;)">assign(size_type,
@@ -3706,7 +3642,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3770,10 +3706,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member28.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member28.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- count &lt;= Capacity.
+ <code class="literal">count &lt;= Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member28.h3"></a>
@@ -3790,17 +3726,14 @@
             Linear O(N).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29" title="emplace_back(Args &amp;&amp;...)">emplace_back(Args
           &amp;&amp;...)</a>
 </h5></div></div></div>
 <p>
- Inserts a Value constructed with std::forward&lt;Args&gt;(args)... in
- the end of the container.
+ Inserts a Value constructed with <code class="literal">std::forward&lt;Args&gt;(args)</code>...
+ in the end of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h0"></a>
@@ -3814,7 +3747,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3860,10 +3793,10 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member29.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member29.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- size() &lt; Capacity.
+ <code class="literal">size() &lt; Capacity</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member29.h3"></a>
@@ -3880,17 +3813,14 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30" title="emplace(iterator, Args &amp;&amp;...)">emplace(iterator,
           Args &amp;&amp;...)</a>
 </h5></div></div></div>
 <p>
- Inserts a Value constructed with std::forward&lt;Args&gt;(args)... before
- position.
+ Inserts a Value constructed with <code class="literal">std::forward&lt;Args&gt;(args)</code>...
+ before position.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h0"></a>
@@ -3904,7 +3834,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -3968,19 +3898,24 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.precondition_s_">Precondition(s)</a>
           </h6>
-<p>
- position must be a valid iterator of *this in range [begin(), end()]
- and size() &lt; Capacity.
- </p>
+<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
+<li class="listitem">
+ <code class="literal">position</code> must be a valid iterator of <code class="literal">*this</code>
+ in range <code class="literal">[begin(), end()</code>]
+ </li>
+<li class="listitem">
+ <code class="literal">size() &lt; Capacity</code>
+ </li>
+</ul></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h3"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member30.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member30.throws">Throws</a>
           </h6>
 <p>
- If in-place constructor throws or Value's move constructor or move assignment
- throws.
+ If in-place constructor throws or if Value's move constructor or move
+ assignment throws.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member30.h4"></a>
@@ -3990,9 +3925,6 @@
             Constant or linear.
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member31"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member31" title="clear()">clear()</a>
@@ -4024,9 +3956,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32" title="at(size_type)">at(size_type)</a>
@@ -4045,7 +3974,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4090,24 +4019,24 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- reference to the i-th element from the beginning of the container.
+ <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.returns">Returns</a>
           </h6>
 <p>
- i &lt; size().
+ reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h4"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member32.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member32.throws">Throws</a>
           </h6>
 <p>
- std::out_of_range exception by default.
+ <code class="literal">std::out_of_range</code> exception by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member32.h5"></a>
@@ -4117,9 +4046,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33" title="at(size_type)">at(size_type)</a>
@@ -4138,7 +4064,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4183,24 +4109,24 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- const reference to the i-th element from the beginning of the container.
+ <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.returns">Returns</a>
           </h6>
 <p>
- i &lt; size().
+ const reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h4"></a>
             <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member33.throws"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member33.throws">Throws</a>
           </h6>
 <p>
- std::out_of_range exception by default.
+ <code class="literal">std::out_of_range</code> exception by default.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member33.h5"></a>
@@ -4210,15 +4136,12 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
-<a name="staticvector.static_vector.reference.boost_container_static_vector.member34"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34" title="operator[">operator[</a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.member34"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34" title="operator[](size_type)">operator[](size_type)</a>
 </h5></div></div></div>
 <p>
- (size_type)] Returns reference to the i-th element.
+ Returns reference to the i-th element.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h0"></a>
@@ -4231,7 +4154,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4276,17 +4199,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- reference to the i-th element from the beginning of the container.
+ <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member34.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member34.returns">Returns</a>
           </h6>
 <p>
- i &lt; size().
+ reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member34.h4"></a>
@@ -4303,15 +4226,12 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
-<a name="staticvector.static_vector.reference.boost_container_static_vector.member35"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35" title="operator[">operator[</a>
+<a name="staticvector.static_vector.reference.boost_container_static_vector.member35"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35" title="operator[](size_type)">operator[](size_type)</a>
 </h5></div></div></div>
 <p>
- (size_type)] Returns const reference to the i-th element.
+ Returns const reference to the i-th element.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h0"></a>
@@ -4324,7 +4244,7 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.parameters"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.parameters">Parameters</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.parameter_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.parameter_s_">Parameter(s)</a>
           </h6>
 <div class="informaltable"><table class="table">
 <colgroup>
@@ -4369,17 +4289,17 @@
 </table></div>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- const reference to the i-th element from the beginning of the container.
+ <code class="literal">i &lt; size()</code>
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h3"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member35.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member35.returns">Returns</a>
           </h6>
 <p>
- i &lt; size().
+ const reference to the i-th element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member35.h4"></a>
@@ -4396,9 +4316,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36" title="front()">front()</a>
@@ -4417,17 +4334,17 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- reference to the first element from the beginning of the container.
+ <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member36.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member36.returns">Returns</a>
           </h6>
 <p>
- !empty().
+ reference to the first element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member36.h3"></a>
@@ -4444,9 +4361,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37" title="front()">front()</a>
@@ -4465,17 +4379,17 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- const reference to the first element from the beginning of the container.
+ <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member37.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member37.returns">Returns</a>
           </h6>
 <p>
- !empty().
+ const reference to the first element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member37.h3"></a>
@@ -4492,9 +4406,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38" title="back()">back()</a>
@@ -4513,17 +4424,17 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- reference to the last element from the beginning of the container.
+ <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member38.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member38.returns">Returns</a>
           </h6>
 <p>
- !empty().
+ reference to the last element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member38.h3"></a>
@@ -4540,9 +4451,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39" title="back()">back()</a>
@@ -4561,17 +4469,17 @@
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h1"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.returns">Returns</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.precondition_s_"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.precondition_s_">Precondition(s)</a>
           </h6>
 <p>
- const reference to the last element from the beginning of the container.
+ <code class="literal">!empty</code>()
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h2"></a>
- <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.precondition"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.precondition">Precondition</a>
+ <span class="phrase"><a name="staticvector.static_vector.reference.boost_container_static_vector.member39.returns"></a></span><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member39.returns">Returns</a>
           </h6>
 <p>
- !empty().
+ const reference to the last element from the beginning of the container.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member39.h3"></a>
@@ -4588,16 +4496,13 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member40"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member40" title="data()">data()</a>
 </h5></div></div></div>
 <p>
- Pointer such that [data(), data() + size()) is a valid range. For a non-empty
- vector, data() == &amp;front().
+ Pointer such that <code class="literal">[data(), data() + size())</code> is a valid
+ range. For a non-empty vector <code class="literal">data() == &amp;front()</code>.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member40.h0"></a>
@@ -4623,16 +4528,13 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member41"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member41" title="data()">data()</a>
 </h5></div></div></div>
 <p>
- Const pointer such that [data(), data() + size()) is a valid range. For
- a non-empty vector, data() == &amp;front().
+ Const pointer such that <code class="literal">[data(), data() + size())</code>
+ is a valid range. For a non-empty vector <code class="literal">data() == &amp;front()</code>.
           </p>
 <h6>
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member41.h0"></a>
@@ -4658,9 +4560,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member42"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member42" title="begin()">begin()</a>
@@ -4699,9 +4598,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member43"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member43" title="begin()">begin()</a>
@@ -4740,9 +4636,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member44"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member44" title="cbegin()">cbegin()</a>
@@ -4781,9 +4674,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member45"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member45" title="end()">end()</a>
@@ -4823,9 +4713,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member46"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member46" title="end()">end()</a>
@@ -4865,9 +4752,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member47"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member47" title="cend()">cend()</a>
@@ -4907,9 +4791,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member48"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member48" title="rbegin()">rbegin()</a>
@@ -4948,9 +4829,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member49"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member49" title="rbegin()">rbegin()</a>
@@ -4989,9 +4867,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member50"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member50" title="crbegin()">crbegin()</a>
@@ -5030,9 +4905,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member51"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member51" title="rend()">rend()</a>
@@ -5073,9 +4945,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member52"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member52" title="rend()">rend()</a>
@@ -5116,9 +4985,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member53"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member53" title="crend()">crend()</a>
@@ -5159,9 +5025,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member54"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member54" title="capacity()">capacity()</a>
@@ -5200,9 +5063,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member55"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member55" title="max_size()">max_size()</a>
@@ -5241,9 +5101,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member56"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member56" title="size()">size()</a>
@@ -5282,9 +5139,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member57"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member57" title="empty()">empty()</a>
@@ -5324,9 +5178,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 <div class="section">
 <div class="titlepage"><div><div><h5 class="title">
 <a name="staticvector.static_vector.reference.boost_container_static_vector.member58"></a><a class="link" href="reference.html#staticvector.static_vector.reference.boost_container_static_vector.member58" title="shrink_to_fit()">shrink_to_fit()</a>
@@ -5358,9 +5209,6 @@
             Constant O(1).
           </p>
 </div>
-<p>
- <br>
- </p>
 </div>
 </div>
 <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk