https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Classes | Functions
FaceCenteredMapFunctor.h File Reference

Go to the source code of this file.

Classes

class  FaceCenteredMapFunctor< T, Map >
 A functor whose evaluation relies on querying a map where the keys are face info ids and the values correspond to the face values. More...
 

Functions

template<typename T , typename Map >
void dataStore (std::ostream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)
 
template<typename T , typename Map >
void dataLoad (std::istream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)
 

Function Documentation

◆ dataLoad()

template<typename T , typename Map >
void dataLoad ( std::istream &  stream,
FaceCenteredMapFunctor< T, Map > &  m,
void *  context 
)
inline

Definition at line 140 of file FaceCenteredMapFunctor.h.

141{
142 Map & m_map = m;
143 dataLoad(stream, m_map, context);
144}
void dataLoad(std::istream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)
MapBase< T1, T2, std::map > Map

Referenced by dataLoad().

◆ dataStore()

template<typename T , typename Map >
void dataStore ( std::ostream &  stream,
FaceCenteredMapFunctor< T, Map > &  m,
void *  context 
)
inline

Definition at line 132 of file FaceCenteredMapFunctor.h.

133{
134 Map & m_map = m;
135 dataStore(stream, m_map, context);
136}
void dataStore(std::ostream &stream, FaceCenteredMapFunctor< T, Map > &m, void *context)

Referenced by dataStore().