diff --git a/doc/bounded_array.htm b/doc/bounded_array.htm index 1d54bed4..779b1b80 100644 --- a/doc/bounded_array.htm +++ b/doc/bounded_array.htm @@ -98,16 +98,16 @@ member inside this model of the concept.
explicit bounded_array (size_type size, const T& = init)bounded_array that holds at most size elements. All the elements are constructed from the init value.bounded_array (size_type size)bounded_array that holds at most size elements. All the elements are default constructed.bounded_array (size_type size, const T& init)bounded_array that holds at most size elements. All the elements are copy-constructed from init.void resize (size_type size)bounded_array to hold at most size elements.void resize (size_type size, const T& t)bounded_array to hold at most size elements.
uBLAS OverviewIt would be nice if every kind of numeric software could
be written in C++ without loss of efficiency, but unless something
can be found that achieves this without compromising the C++ type
@@ -264,7 +264,7 @@ development cycle. Switching from debug mode to release mode is
controlled by the NDEBUG preprocessor symbol of
<cassert>.
Every C++ library supporting linear algebra will be measured against the long-standing Fortran package BLAS. We now describe how diff --git a/doc/unbounded_array.htm b/doc/unbounded_array.htm index c61873c9..1ca2651e 100644 --- a/doc/unbounded_array.htm +++ b/doc/unbounded_array.htm @@ -52,7 +52,7 @@ int main () {
None, except for those imposed by the requirements of Random Access Container.
@@ -93,17 +93,17 @@ member inside this model of the concept.allocator_typeexplicit unbounded_array (ALLOC &a = ALLOC())unbounded_array that holds at most zero elements, using a specified allocator.explicit unbounded_array (size_type size, ALLOC &a = ALLOC())unbounded_array that holds at most size elements, using a specified allocator. All the elements are constructed without an initializer. explicit unbounded_array (size_type size, const T& init, ALLOC& a = ALLOC())unbounded_array that holds at most size elements, using a specified allocator. All the elements are constructed from the init value.void resize (size_type n , bool preserve = true)unbounded_array to hold at most n elements. When preserve == false the elements values after resize are undefined.void resize(size_type n, const T& t)unbounded_array to hold at most n elements.