https://mooseframework.inl.gov
Classes | Functions
MultiIndex.h File Reference

Go to the source code of this file.

Classes

class  MultiIndex< T >
 Implements a container class for multi-indexed objects with an arbitrary number of indices. More...
 
class  MultiIndex< T >::const_noconst_iterator< is_const >
 MultiIndex container iterator. More...
 
class  MultiIndex< T >::const_noconst_iterator< is_const >
 MultiIndex container iterator. More...
 

Functions

template<class T >
void dataStore (std::ostream &stream, MultiIndex< T > &mi, void *context)
 
template<class T >
void dataLoad (std::istream &stream, MultiIndex< T > &mi, void *context)
 

Function Documentation

◆ dataLoad()

template<class T >
void dataLoad ( std::istream &  stream,
MultiIndex< T > &  mi,
void context 
)

Definition at line 505 of file MultiIndex.h.

Referenced by MultiIndex< Real >::dataLoad().

506 {
507  mi.dataLoad(stream, context);
508 }
void dataLoad(std::istream &stream, void *context)
Definition: MultiIndex.h:413

◆ dataStore()

template<class T >
void dataStore ( std::ostream &  stream,
MultiIndex< T > &  mi,
void context 
)

Definition at line 498 of file MultiIndex.h.

Referenced by MultiIndex< Real >::dataStore().

499 {
500  mi.dataStore(stream, context);
501 }
void dataStore(std::ostream &stream, void *context)
Implement loadHelper and storeHelper for easier data (de)serialization.
Definition: MultiIndex.h:405