BaseTemplate.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_VIEWS_SUBVECTOR_BASETEMPLATE_H_
36 #define _BLAZE_MATH_VIEWS_SUBVECTOR_BASETEMPLATE_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
46 
47 
48 namespace blaze {
49 
50 //=================================================================================================
51 //
52 // CLASS DEFINITION
53 //
54 //=================================================================================================
55 
56 //*************************************************************************************************
430 template< typename VT // Type of the vector
431  , bool AF = unaligned // Alignment flag
432  , bool TF = IsRowVector<VT>::value // Transpose flag
433  , bool DF = IsDenseVector<VT>::value > // Density flag
435 {};
436 //*************************************************************************************************
437 
438 } // namespace blaze
439 
440 #endif
View on a specific subvector of a dense or sparse vector.The Subvector class template represents a vi...
Definition: BaseTemplate.h:434
Header file for the alignment flag values.
Header file for the IsRowVector type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
constexpr bool unaligned
Alignment flag for unaligned vectors and matrices.Via this flag it is possible to specify subvectors...
Definition: AlignmentFlag.h:64
Header file for the IsDenseVector type trait.