https://mooseframework.inl.gov
Public Member Functions | Public Attributes | List of all members
TimedElementSubdomainModifier::TimeIndexPair Struct Reference

storage for the times including their original index. More...

#include <TimedElementSubdomainModifier.h>

Public Member Functions

bool operator< (const TimeIndexPair &a) const
 

Public Attributes

Real time
 
std::size_t index
 

Detailed Description

storage for the times including their original index.

Definition at line 35 of file TimedElementSubdomainModifier.h.

Member Function Documentation

◆ operator<()

bool TimedElementSubdomainModifier::TimeIndexPair::operator< ( const TimeIndexPair a) const
inline

Definition at line 40 of file TimedElementSubdomainModifier.h.

41  {
42  if (time == a.time)
43  return index < a.index;
44  else
45  return time < a.time;
46  }

Member Data Documentation

◆ index

std::size_t TimedElementSubdomainModifier::TimeIndexPair::index

Definition at line 38 of file TimedElementSubdomainModifier.h.

Referenced by operator<().

◆ time

Real TimedElementSubdomainModifier::TimeIndexPair::time

Definition at line 37 of file TimedElementSubdomainModifier.h.

Referenced by operator<().


The documentation for this struct was generated from the following file: