![]() |
Blaze 3.9
|
Base class for N-dimensional dense vectors. More...
#include <DenseVector.h>
Inherits blaze::Vector< VT, TF >.
Public Types | |
using | VectorType = VT |
Type of the vector. | |
Public Member Functions | |
Conversion operators | |
BLAZE_ALWAYS_INLINE constexpr VT & | operator~ () noexcept |
CRTP-based conversion operation for non-constant vectors. More... | |
BLAZE_ALWAYS_INLINE constexpr const VT & | operator~ () const noexcept |
CRTP-based conversion operation for constant vectors. More... | |
constexpr VT & | operator* () noexcept |
CRTP-based conversion operation for non-constant vectors. More... | |
constexpr const VT & | operator* () const noexcept |
CRTP-based conversion operation for constant vectors. More... | |
Static Public Attributes | |
static constexpr bool | transposeFlag = TF |
Transpose flag of the vector. | |
Protected Member Functions | |
Special member functions | |
DenseVector ()=default | |
DenseVector (const DenseVector &)=default | |
DenseVector (DenseVector &&)=default | |
~DenseVector ()=default | |
DenseVector & | operator= (const DenseVector &)=default |
DenseVector & | operator= (DenseVector &&)=default |
Base class for N-dimensional dense vectors.
The DenseVector class is a base class for all arbitrarily sized (N-dimensional) dense vectors. It provides an abstraction from the actual type of the dense vector, but enables a conversion back to this type via the Vector base class.
|
constexprnoexceptinherited |
CRTP-based conversion operation for constant vectors.
This operator performs the CRTP-based type-safe downcast to the actual type VT of the vector. It will return a constant reference to the actual type VT.
|
constexprnoexceptinherited |
CRTP-based conversion operation for non-constant vectors.
This operator performs the CRTP-based type-safe downcast to the actual type VT of the vector. It will return a mutable reference to the actual type VT.
|
constexprnoexceptinherited |
CRTP-based conversion operation for constant vectors.
This operator performs the CRTP-based type-safe downcast to the actual type VT of the vector. It will return a constant reference to the actual type VT.
|
constexprnoexceptinherited |
CRTP-based conversion operation for non-constant vectors.
This operator performs the CRTP-based type-safe downcast to the actual type VT of the vector. It will return a mutable reference to the actual type VT.