35 #ifndef _BLAZE_MATH_PROXY_PROXY_H_
36 #define _BLAZE_MATH_PROXY_PROXY_H_
100 , typename If< IsDenseVector<RT>
101 , DenseVectorProxy<PT,RT>
102 , SparseVectorProxy<PT,RT>
104 , typename If< IsMatrix<RT>
105 , typename If< IsDenseMatrix<RT>
106 , DenseMatrixProxy<PT,RT>
107 , SparseMatrixProxy<PT,RT>
109 , typename If< IsComplex<RT>
110 , ComplexProxy<PT,RT>
111 , DefaultProxy<PT,RT>
Compile time type selection.The If class template selects one of the two given types T2 and T3 depend...
Definition: If.h:112
Header file for the SparseVectorProxy class.
Proxy base class.The Proxy class is a base class for all proxy classes within the Blaze library that ...
Definition: Proxy.h:99
Header file for the DefaultProxy class.
Header file for the DenseMatrixProxy class.
Header file for the DenseVectorProxy class.
Header file for the IsMatrix type trait.
Header file for the If class template.
Header file for the ComplexProxy class.
Header file for the SparseMatrixProxy class.
Header file for the IsVector type trait.
Header file for the IsDenseMatrix type trait.
Header file for the IsDenseVector type trait.
Header file for the IsComplex type trait.