From 3abc09e4dcbe564bf64d3d05fbf13ea9b77bcb71 Mon Sep 17 00:00:00 2001 From: Michael Stevens Date: Thu, 14 Jul 2005 09:44:06 +0000 Subject: [PATCH] ADD vector/matrix_expression public base to associated types svn path=/trunk/boost/libs/numeric/ublas/; revision=30070 --- doc/container_concept.htm | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/doc/container_concept.htm b/doc/container_concept.htm index 1b3f0816..f40a36db 100644 --- a/doc/container_concept.htm +++ b/doc/container_concept.htm @@ -26,9 +26,15 @@ vectors.

- - - + + + + + + + +
StorageArrayarray_typeThe type of underlying storage used to store the elementsPublic basevector_expression<V>V must be derived from this public base type.
Storage arrayV::array_typeThe type of underlying storage array used to store the elements. The array_type must model +the Storage concept.
@@ -217,9 +223,15 @@ matrices.

- - - + + + + + + + +
StorageArrayarray_typeThe type of underlying storage used to store the elementsPublic basematrix_expression<M>M must be derived from this public base type.
Storage arrayM::array_typeThe type of underlying storage array used to store the elements. The array_type must model +the Storage concept.