From 97a26a15999d14fa9becff7e21425daa06413fbf Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Wed, 19 Dec 2012 20:32:34 +0000 Subject: [PATCH] Documented boost::get support in Boost.Array [SVN r82105] --- doc/Jamfile.v2 | 5 +++ doc/array.xml | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 doc/Jamfile.v2 diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 new file mode 100644 index 0000000..ce8e110 --- /dev/null +++ b/doc/Jamfile.v2 @@ -0,0 +1,5 @@ +using boostbook ; + +boostbook standalone + : array.xml + : boost.root=../../../.. ; diff --git a/doc/array.xml b/doc/array.xml index 62bf7c2..eac8087 100644 --- a/doc/array.xml +++ b/doc/array.xml @@ -7,6 +7,10 @@ Nicolai Josuttis + + Marshall + Clow + 2001 @@ -16,6 +20,11 @@ Nicolai M. Josuttis + + 2012 + Marshall Clow + + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at @@ -176,6 +185,24 @@ iterator for position after the last element will not throw + + + + const_iterator + + + constant iterator for the first element + will not throw + + + + + const_iterator + + + constant iterator for position after the last element + will not throw + @@ -200,6 +227,24 @@ reverse iterator for position after the last element in reverse iteration + + + + const_reverse_iterator + + + constant reverse iterator for the first element of reverse iteration + will not throw + + + + + const_reverse_iterator + + + constant reverse iterator for position after the last element in reverse iteration + will not throw + @@ -465,6 +510,49 @@ !(x < y) + + + + + + T + + + array<T, N>& + + element of array with index Idx + Will static_assert if Idx >= N + + + + + + T + + + const array<T, N>& + + const element of array with index Idx + Will static_assert if Idx >= N + + +