| 366 | ConstIterator end() const { return m_DimMappings.begin() + m_NumDimMappings; } |
| 367 | |
| 368 | bool IsEqual(const PermutationVector& other) const |
| 369 | { |
| 370 | if (m_NumDimMappings != other.m_NumDimMappings) return false; |
| 371 | for (unsigned int i = 0; i < m_NumDimMappings; ++i) |
| 372 | { |
| 373 | if (m_DimMappings[i] != other.m_DimMappings[i]) return false; |
| 374 | } |
| 375 | return true; |
| 376 | } |
| 377 | |
| 378 | bool IsInverse(const PermutationVector& other) const |
| 379 | { |
no outgoing calls
no test coverage detected