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) -Storage +Storage Creates an initialized bounded_array that holds at most size elements. All the elements are constructed from the init value. bounded_array (size_type size) -Storage +Storage Creates an uninitialized bounded_array that holds at most size elements. All the elements are default constructed. bounded_array (size_type size, const T& init) -Storage +Storage Creates an bounded_array that holds at most size elements. All the elements are copy-constructed from init. @@ -122,12 +122,12 @@ member inside this model of the concept. void resize (size_type size) -Storage +Storage Reallocates a bounded_array to hold at most size elements. void resize (size_type size, const T& t) -Storage +Storage Reallocates a bounded_array to hold at most size elements. diff --git a/doc/index.htm b/doc/index.htm index dbfe9b9d..d3428e05 100644 --- a/doc/index.htm +++ b/doc/index.htm @@ -39,43 +39,13 @@ interface.

Supported Platforms

diff --git a/doc/overview.htm b/doc/overview.htm index d387abb5..e87b751c 100644 --- a/doc/overview.htm +++ b/doc/overview.htm @@ -12,7 +12,7 @@

uBLAS Overview

-

Rationale

+

Rationale

It 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>.

-

Functionality

+

Functionality

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 () {

Model of

-

Storage

+

Storage

Type requirements

None, except for those imposed by the requirements of Random Access Container.

@@ -93,17 +93,17 @@ member inside this model of the concept. allocator_typeDefined as ALLOC explicit unbounded_array (ALLOC &a = ALLOC()) -Storage +Storage Creates an unbounded_array that holds at most zero elements, using a specified allocator. explicit unbounded_array (size_type size, ALLOC &a = ALLOC()) -Storage +Storage Creates a uninitialized 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()) -Storage +Storage Creates an initialized unbounded_array that holds at most size elements, using a specified allocator. All the elements are constructed from the init value. @@ -118,12 +118,12 @@ member inside this model of the concept. void resize (size_type n , bool preserve = true) -Storage +Storage Reallocates an 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) -Storage +Storage Reallocates an unbounded_array to hold at most n elements.