libMesh::MeshBase::const_node_iterator Struct Reference

#include <mesh_base.h>

Inheritance diagram for libMesh::MeshBase::const_node_iterator:

Public Member Functions

template<typename PredType , typename IterType >
 const_node_iterator (const IterType &d, const IterType &e, const PredType &p)
 
 const_node_iterator (const MeshBase::node_iterator &rhs)
 

Detailed Description

The definition of the const_node_iterator struct. It is similar to the regular iterator above, but also provides an additional conversion-to-const ctor.

Definition at line 1581 of file mesh_base.h.

Constructor & Destructor Documentation

◆ const_node_iterator() [1/2]

template<typename PredType , typename IterType >
libMesh::MeshBase::const_node_iterator::const_node_iterator ( const IterType &  d,
const IterType &  e,
const PredType &  p 
)
inline

Templated forwarding ctor – forwards to appropriate variant_filter_iterator ctor.

Definition at line 1591 of file mesh_base.h.

1593  :
1594  variant_filter_iterator<MeshBase::Predicate, Node * const, Node * const &, Node * const *>(d,e,p) {}

◆ const_node_iterator() [2/2]

libMesh::MeshBase::const_node_iterator::const_node_iterator ( const MeshBase::node_iterator rhs)
inline

The conversion-to-const ctor. Takes a regular iterator and calls the appropriate variant_filter_iterator copy constructor.

Note
This one is not templated!

Definition at line 1602 of file mesh_base.h.

1602  :
1603  variant_filter_iterator<Predicate, Node * const, Node * const &, Node * const *>(rhs) {}

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