MOAB
4.9.3pre
|
#include <Transpositions.h>
Public Types | |
typedef TranspositionsBase < TranspositionsWrapper > | Base |
typedef Traits::IndicesType | IndicesType |
typedef IndicesType::Scalar | StorageIndex |
Public Member Functions | |
TranspositionsWrapper (IndicesType &indices) | |
template<typename OtherDerived > | |
TranspositionsWrapper & | operator= (const TranspositionsBase< OtherDerived > &other) |
TranspositionsWrapper & | operator= (const TranspositionsWrapper &other) |
const IndicesType & | indices () const |
IndicesType & | indices () |
Protected Attributes | |
IndicesType::Nested | m_indices |
Private Types | |
typedef internal::traits < TranspositionsWrapper > | Traits |
Definition at line 288 of file Transpositions.h.
typedef TranspositionsBase<TranspositionsWrapper> Eigen::TranspositionsWrapper< _IndicesType >::Base |
Definition at line 294 of file Transpositions.h.
typedef Traits::IndicesType Eigen::TranspositionsWrapper< _IndicesType >::IndicesType |
Reimplemented from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >.
Definition at line 295 of file Transpositions.h.
typedef IndicesType::Scalar Eigen::TranspositionsWrapper< _IndicesType >::StorageIndex |
Reimplemented from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >.
Definition at line 296 of file Transpositions.h.
typedef internal::traits<TranspositionsWrapper> Eigen::TranspositionsWrapper< _IndicesType >::Traits [private] |
Reimplemented from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >.
Definition at line 291 of file Transpositions.h.
Eigen::TranspositionsWrapper< _IndicesType >::TranspositionsWrapper | ( | IndicesType & | indices | ) | [inline, explicit] |
Definition at line 298 of file Transpositions.h.
const IndicesType& Eigen::TranspositionsWrapper< _IndicesType >::indices | ( | ) | const [inline] |
const version of indices().
Reimplemented from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >.
Definition at line 321 of file Transpositions.h.
{ return m_indices; }
IndicesType& Eigen::TranspositionsWrapper< _IndicesType >::indices | ( | ) | [inline] |
Reimplemented from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >.
Definition at line 324 of file Transpositions.h.
{ return m_indices; }
TranspositionsWrapper& Eigen::TranspositionsWrapper< _IndicesType >::operator= | ( | const TranspositionsBase< OtherDerived > & | other | ) | [inline] |
Copies the other transpositions into *this
Reimplemented from Eigen::TranspositionsBase< TranspositionsWrapper< _IndicesType > >.
Definition at line 304 of file Transpositions.h.
{ return Base::operator=(other); }
TranspositionsWrapper& Eigen::TranspositionsWrapper< _IndicesType >::operator= | ( | const TranspositionsWrapper< _IndicesType > & | other | ) | [inline] |
This is a special case of the templated operator=. Its purpose is to prevent a default operator= from hiding the templated operator=.
Definition at line 313 of file Transpositions.h.
{ m_indices = other.m_indices; return *this; }
IndicesType::Nested Eigen::TranspositionsWrapper< _IndicesType >::m_indices [protected] |
Definition at line 328 of file Transpositions.h.