From b9785dff416f40acd45932f0ea1d1b5996f6b3d2 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Mon, 13 Jun 2005 11:45:51 +0000 Subject: [PATCH] elements are not initialised. Thanks Gunter --- doc/types_overview.htm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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);