diff --git a/doc/types_overview.htm b/doc/types_overview.htm index d7f95161..5fc6a345 100644 --- a/doc/types_overview.htm +++ b/doc/types_overview.htm @@ -65,7 +65,7 @@ look at the section "storage layout". a dense vector of values of type T of variable size. A storage type A can be specified which defaults to unbounded_array. -Elements are zeroed by default. +Elements are constructed by A, which need not initialise their value. @@ -73,7 +73,7 @@ Elements are zeroed by default. a dense vector of values of type T of variable size but with maximum N. The default constructor creates v with size N. -Elements are zeroed by default. +Elements are constructed by the storage type bounded_array, which need not initialise their value. c_vector<T, M>
   v(size);
@@ -171,14 +171,14 @@ size. A storage type A can be specified which defaults to unbounded_array. The orientation functor F defaults to row_major. -Elements are zeroed by default. +Elements are constructed by A, which need not initialise their value. bounded_matrix<T, M, N [, F]>
   m;
a dense matrix of type T with variable size with maximum M-by-N. The orientation functor F defaults to row_major. The default constructor creates m with size M-by-N. -Elements are zeroed by default. +Elements are constructed by the storage type bounded_array, which need not initialise their value. c_matrix<T, M, N>
   m(size1, size2);