libMesh
Public Member Functions | List of all members
libMesh::Elem::ChildRefIter Class Reference

#include <elem.h>

Inheritance diagram for libMesh::Elem::ChildRefIter:
[legend]

Public Member Functions

 ChildRefIter (Elem *const *childpp)
 
Elemoperator* () const
 
const PointerToPointerIteroperator++ ()
 
PointerToPointerIter operator++ (int)
 
bool operator== (const PointerToPointerIter &j) const
 
bool operator!= (const PointerToPointerIter &j) const
 

Detailed Description

Definition at line 2170 of file elem.h.

Constructor & Destructor Documentation

◆ ChildRefIter()

libMesh::Elem::ChildRefIter::ChildRefIter ( Elem *const *  childpp)
inline

Definition at line 2174 of file elem.h.

2174 : PointerToPointerIter<Elem>(childpp) {}

Member Function Documentation

◆ operator!=()

bool libMesh::PointerToPointerIter< Elem >::operator!= ( const PointerToPointerIter< Elem > &  j) const
inlineinherited

Definition at line 61 of file pointer_to_pointer_iter.h.

62  {
63  return !(*this == j);
64  }

◆ operator*()

Elem & libMesh::PointerToPointerIter< Elem >::operator* ( ) const
inlineinherited

Definition at line 41 of file pointer_to_pointer_iter.h.

41 { return **_it; }

◆ operator++() [1/2]

const PointerToPointerIter& libMesh::PointerToPointerIter< Elem >::operator++ ( )
inlineinherited

Definition at line 43 of file pointer_to_pointer_iter.h.

44  {
45  ++_it;
46  return *this;
47  }

◆ operator++() [2/2]

PointerToPointerIter libMesh::PointerToPointerIter< Elem >::operator++ ( int  )
inlineinherited

Definition at line 49 of file pointer_to_pointer_iter.h.

50  {
51  PointerToPointerIter returnval(*this);
52  ++_it;
53  return returnval;
54  }

◆ operator==()

bool libMesh::PointerToPointerIter< Elem >::operator== ( const PointerToPointerIter< Elem > &  j) const
inlineinherited

Definition at line 56 of file pointer_to_pointer_iter.h.

57  {
58  return ( _it == j._it );
59  }

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