https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Public Types | Public Member Functions | Public Attributes | Private Member Functions | List of all members
MooseMesh::const_bnd_node_iterator Struct Reference

The definition of the const_bnd_node_iterator struct. More...

#include <MooseMesh.h>

Inheritance diagram for MooseMesh::const_bnd_node_iterator:
[legend]

Public Types

typedef std::forward_iterator_tag iterator_category
 
typedef Type value_type
 
typedef std::ptrdiff_t difference_type
 
typedef PointerType pointer
 
typedef ReferenceType reference
 
typedef variant_filter_iterator< Predicate, Type, ReferenceType, PointerType, ConstType, ConstReferenceType, ConstPointerType > Iterator
 

Public Member Functions

template<typename PredType , typename IterType >
 const_bnd_node_iterator (const IterType &d, const IterType &e, const PredType &p)
 
 const_bnd_node_iterator (const MooseMesh::bnd_node_iterator &rhs)
 
ReferenceType operator* () const
 
PointerType operator-> () const
 
Iteratoroperator++ ()
 
const Iterator operator++ (int)
 
bool equal (const variant_filter_iterator &other) const
 
void swap (Iterator &lhs, Iterator &rhs)
 

Public Attributes

std::unique_ptr< IterBase > data
 
std::unique_ptr< IterBase > end
 
std::unique_ptr< PredBase > pred
 

Private Member Functions

void satisfy_predicate ()
 

Detailed Description

The definition of the const_bnd_node_iterator struct.

It is similar to the iterator above, but also provides an additional conversion-to-const ctor.

Definition at line 2187 of file MooseMesh.h.

Constructor & Destructor Documentation

◆ const_bnd_node_iterator() [1/2]

template<typename PredType , typename IterType >
MooseMesh::const_bnd_node_iterator::const_bnd_node_iterator ( const IterType &  d,
const IterType &  e,
const PredType &  p 
)
inline

Definition at line 2194 of file MooseMesh.h.

2195 : variant_filter_iterator<MeshBase::Predicate,
2196 BndNode * const,
2197 BndNode * const &,
2198 BndNode * const *>(d, e, p)
2199 {
2200 }

◆ const_bnd_node_iterator() [2/2]

MooseMesh::const_bnd_node_iterator::const_bnd_node_iterator ( const MooseMesh::bnd_node_iterator rhs)
inline

Definition at line 2204 of file MooseMesh.h.

2205 : variant_filter_iterator<MeshBase::Predicate,
2206 BndNode * const,
2207 BndNode * const &,
2208 BndNode * const *>(rhs)
2209 {
2210 }

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