All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Forward.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_FORWARD_H_
36 #define _BLAZE_MATH_VIEWS_FORWARD_H_
37 
38 
39 namespace blaze {
40 
41 //=================================================================================================
42 //
43 // ::blaze NAMESPACE FORWARD DECLARATIONS
44 //
45 //=================================================================================================
46 
47 template< typename, bool > class DenseColumn;
48 template< typename, bool > class DenseRow;
49 template< typename, bool, bool > class DenseSubmatrix;
50 template< typename, bool, bool > class DenseSubvector;
51 template< typename, bool > class SparseColumn;
52 template< typename, bool > class SparseRow;
53 template< typename, bool, bool > class SparseSubmatrix;
54 template< typename, bool, bool > class SparseSubvector;
55 
56 } // namespace blaze
57 
58 #endif
View on a specific subvector of a sparse vector.The SparseSubvector template represents a view on a s...
Definition: Forward.h:54
Reference to a specific row of a sparse matrix.The SparseRow template represents a reference to a spe...
Definition: Forward.h:52
View on a specific submatrix of a sparse matrix.The SparseSubmatrix template represents a view on a s...
Definition: Forward.h:53
Reference to a specific column of a sparse matrix.The SparseColumn template represents a reference to...
Definition: Forward.h:51