30 using UnqualifiedContainer = std::conditional_t<
31 std::is_same_v<typename TEntityProxy::UnqualifiedEntity,Node>,
32 ModelPart::NodesContainerType,
34 std::is_same_v<typename TEntityProxy::UnqualifiedEntity,Element>,
35 ModelPart::ElementsContainerType,
37 std::is_same_v<typename TEntityProxy::UnqualifiedEntity,Condition>,
38 ModelPart::ConditionsContainerType,
44 constexpr static bool IsMutable = TEntityProxy::IsMutable;
46 using WrappedIterator = std::conditional_t<IsMutable,
47 typename UnqualifiedContainer::iterator,
48 typename UnqualifiedContainer::const_iterator>;
50 template <
bool TMutable>
54 using Wrapped = std::conditional_t<TMutable,
55 typename UnqualifiedContainer::iterator,
56 typename UnqualifiedContainer::const_iterator>;
61 using pointer = std::conditional_t<TMutable,
65 using reference = std::conditional_t<TMutable,
69 using difference_type = std::ptrdiff_t;
71 using iterator_category = std::random_access_iterator_tag;
73 Iterator()
noexcept =
default;
75 Iterator(Wrapped It) noexcept : mWrapped(It) {}
79 Iterator& operator++()
noexcept {++mWrapped;
return *
this;}
81 Iterator operator++(
int)
noexcept {Iterator copy(mWrapped); ++mWrapped;
return copy;}
83 Iterator& operator--()
noexcept {--mWrapped;
return *
this;}
85 Iterator operator--(
int)
noexcept {Iterator copy(mWrapped); --mWrapped;
return copy;}
87 Iterator& operator+=(difference_type Rhs)
noexcept {mWrapped += Rhs;
return *
this;}
89 Iterator& operator-=(difference_type Rhs)
noexcept {mWrapped -= Rhs;
return *
this;}
91 Iterator operator+(difference_type Rhs)
const noexcept {Iterator copy(mWrapped); copy += Rhs;
return copy;}
93 Iterator operator-(difference_type Rhs)
const noexcept {Iterator copy(mWrapped); copy -= Rhs;
return copy;}
95 difference_type operator-(Iterator Rhs)
const noexcept {
return mWrapped - Rhs.mWrapped;}
97 bool operator==(Iterator Rhs)
const noexcept {
return mWrapped == Rhs.mWrapped;}
99 bool operator!=(Iterator Rhs)
const noexcept {
return mWrapped != Rhs.mWrapped;}
101 bool operator<(Iterator Rhs)
const noexcept {
return mWrapped < Rhs.mWrapped;}
103 bool operator>(Iterator Rhs)
const noexcept {
return mWrapped > Rhs.mWrapped;}
105 bool operator<=(Iterator Rhs)
const noexcept {
return mWrapped <= Rhs.mWrapped;}
107 bool operator>=(Iterator Rhs)
const noexcept {
return mWrapped >= Rhs.mWrapped;}
128 typename const_iterator::value_type
operator[](
size_type Index)
const noexcept {
return typename const_iterator::value_type(*(mBegin + Index));}
130 typename iterator::value_type
operator[](
size_type Index)
noexcept {
return typename iterator::value_type(*(mBegin + Index));}
132 typename const_iterator::value_type
at(
size_type Index)
const noexcept {
return typename const_iterator::value_type(*(mBegin + Index));}
134 typename iterator::value_type
at(
size_type Index)
noexcept {
return typename iterator::value_type(*(mBegin + Index));}
138 bool empty() const noexcept {
return this->size() == 0;}
153 WrappedIterator mBegin, mEnd;