Eigen  3.2.7
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
NoAlias< ExpressionType, StorageBase > Class Template Reference

Detailed Description

template<typename ExpressionType, template< typename > class StorageBase>
class Eigen::NoAlias< ExpressionType, StorageBase >

Pseudo expression providing an operator = assuming no aliasing.

Parameters
ExpressionTypethe 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()

Public Member Functions

template<typename OtherDerived >
ExpressionType & operator+= (const StorageBase< OtherDerived > &other)
 
template<typename OtherDerived >
ExpressionType & operator-= (const StorageBase< OtherDerived > &other)
 
template<typename OtherDerived >
ExpressionType & operator= (const StorageBase< OtherDerived > &other)
 

Member Function Documentation

ExpressionType& operator+= ( const StorageBase< OtherDerived > &  other)
inline
ExpressionType& operator-= ( const StorageBase< OtherDerived > &  other)
inline
ExpressionType& operator= ( const StorageBase< OtherDerived > &  other)
inline

Behaves like MatrixBase::lazyAssign(other)

See Also
MatrixBase::lazyAssign()

The documentation for this class was generated from the following file: