#include <StdExpansion.h>
Definition at line 69 of file StdExpansion.h.
◆ StdFacKey()
◆ operator<
Definition at line 75 of file StdExpansion.h.
76 {
77 if (lhs.m_stdFacType < rhs.m_stdFacType)
78 {
79 return true;
80 }
81
82 if (lhs.m_stdFacType > rhs.m_stdFacType)
83 {
84 return false;
85 }
86
87 return (lhs.m_basisKey < rhs.m_basisKey);
88 }
◆ operator<<
| std::ostream & operator<< |
( |
std::ostream & |
os, |
|
|
const StdFacKey & |
rhs |
|
) |
| |
|
friend |
Definition at line 90 of file StdExpansion.h.
91 {
92 os << "Failed to fine a Create StdFac method for factor "
93 << rhs.m_stdFacType << std::endl;
94
95 return os;
96 }
◆ m_basisKey
◆ m_stdFacType
| StdFacType Nektar::StdRegions::StdFacKey::m_stdFacType |