Public Member Functions |
ExpressionType & | expression () const |
| NoAlias (ExpressionType &expression) |
template<typename OtherDerived > |
EIGEN_STRONG_INLINE
ExpressionType & | operator+= (const StorageBase< OtherDerived > &other) |
template<typename ProductDerived , typename Lhs , typename Rhs > |
EIGEN_STRONG_INLINE
ExpressionType & | operator+= (const ProductBase< ProductDerived, Lhs, Rhs > &other) |
template<typename Lhs , typename Rhs , int NestingFlags> |
EIGEN_STRONG_INLINE
ExpressionType & | operator+= (const CoeffBasedProduct< Lhs, Rhs, NestingFlags > &other) |
template<typename OtherDerived > |
EIGEN_STRONG_INLINE
ExpressionType & | operator-= (const StorageBase< OtherDerived > &other) |
template<typename ProductDerived , typename Lhs , typename Rhs > |
EIGEN_STRONG_INLINE
ExpressionType & | operator-= (const ProductBase< ProductDerived, Lhs, Rhs > &other) |
template<typename Lhs , typename Rhs , int NestingFlags> |
EIGEN_STRONG_INLINE
ExpressionType & | operator-= (const CoeffBasedProduct< Lhs, Rhs, NestingFlags > &other) |
template<typename OtherDerived > |
EIGEN_STRONG_INLINE
ExpressionType & | operator= (const StorageBase< OtherDerived > &other) |
template<typename OtherDerived > |
ExpressionType & | operator= (const ReturnByValue< OtherDerived > &func) |
Protected Attributes |
ExpressionType & | m_expression |
Private Types |
typedef ExpressionType::Scalar | Scalar |
template<typename ExpressionType, template< typename > class StorageBase>
class Eigen::NoAlias< ExpressionType, StorageBase >
Pseudo expression providing an operator = assuming no aliasing.
- Parameters:
-
ExpressionType | the type of the object on which to do the lazy assignment |
This class represents an expression with special assignment operators assuming no aliasing between the target expression and the source expression. More precisely it alloas to bypass the EvalBeforeAssignBit flag of the source expression. It is the return type of MatrixBase::noalias() and most of the time this is the only way it is used.
- See also:
- MatrixBase::noalias()
Definition at line 31 of file NoAlias.h.