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".
T of variable
size. A storage type A can be specified
which defaults to unbounded_array.
-Elements are zeroed by default.A, which need not initialise their value.
T of variable size but with maximum
N. The default constructor creates v
with size N.
-Elements are zeroed by default.bounded_array, which need not initialise their value.
c_vector<T, M>
v(size);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;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.bounded_array, which need not initialise their value.
c_matrix<T, M, N>
m(size1, size2);