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

#include <elem.h>

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

Public Member Functions

 ConstNodeRefIter (const Node *const *nodepp)
 
const Nodeoperator* () const
 
const PointerToPointerIteroperator++ ()
 
PointerToPointerIter operator++ (int)
 
bool operator== (const PointerToPointerIter &j) const
 
bool operator!= (const PointerToPointerIter &j) const
 

Detailed Description

Definition at line 2161 of file elem.h.

Constructor & Destructor Documentation

◆ ConstNodeRefIter()

libMesh::Elem::ConstNodeRefIter::ConstNodeRefIter ( const Node *const *  nodepp)
inline

Definition at line 2165 of file elem.h.

2165 : PointerToPointerIter<const Node>(nodepp) {}

Member Function Documentation

◆ operator!=()

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

Definition at line 61 of file pointer_to_pointer_iter.h.

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

◆ operator*()

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

Definition at line 41 of file pointer_to_pointer_iter.h.

41 { return **_it; }

◆ operator++() [1/2]

const PointerToPointerIter& libMesh::PointerToPointerIter< const Node >::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< const Node >::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< const Node >::operator== ( const PointerToPointerIter< const Node > &  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: