15#ifndef dealii_linear_index_iterator_h
16#define dealii_linear_index_iterator_h
139template <
typename DerivedIterator,
typename AccessorType>
146#ifdef DEAL_II_HAVE_CXX20
257 template <
typename OtherIterator>
258 std::enable_if_t<std::is_convertible_v<OtherIterator, DerivedIterator>,
bool>
261 const auto &right_2 =
static_cast<const DerivedIterator &
>(right);
262 return this->
accessor == right_2.accessor;
268 template <
typename OtherIterator>
269 std::enable_if_t<std::is_convertible_v<OtherIterator, DerivedIterator>,
bool>
272 return !(*
this == right);
303 operator<(
const DerivedIterator &)
const;
332template <
typename DerivedIterator,
typename AccessorType>
333inline DerivedIterator &
335 const DerivedIterator &it)
337 accessor.container = it.container;
338 accessor.linear_index = it.linear_index;
339 return static_cast<DerivedIterator &
>(*this);
344template <
typename DerivedIterator,
typename AccessorType>
345inline DerivedIterator &
348 return operator+=(1);
353template <
typename DerivedIterator,
typename AccessorType>
354inline DerivedIterator
357 const DerivedIterator copy(this->accessor);
364template <
typename DerivedIterator,
typename AccessorType>
365inline DerivedIterator &
368 return operator+=(-1);
373template <
typename DerivedIterator,
typename AccessorType>
374inline DerivedIterator
377 const DerivedIterator copy(this->accessor);
384template <
typename DerivedIterator,
typename AccessorType>
385inline DerivedIterator
389 DerivedIterator copy(this->accessor);
396template <
typename DerivedIterator,
typename AccessorType>
397inline DerivedIterator
401 DerivedIterator copy(this->accessor);
408template <
typename DerivedIterator,
typename AccessorType>
409inline DerivedIterator &
413 accessor.linear_index += n;
414 return static_cast<DerivedIterator &
>(*this);
419template <
typename DerivedIterator,
typename AccessorType>
420inline DerivedIterator &
424 return operator+=(-n);
429template <
typename DerivedIterator,
typename AccessorType>
433 const DerivedIterator &other)
const
435 Assert(this->accessor.container == other.accessor.container,
437 "Only iterators pointing to the same container can be compared."));
438 return this->accessor.linear_index - other.accessor.linear_index;
443template <
typename DerivedIterator,
typename AccessorType>
452template <
typename DerivedIterator,
typename AccessorType>
461template <
typename DerivedIterator,
typename AccessorType>
464 const DerivedIterator &other)
const
466 return (*
this == other) || (*
this < other);
471template <
typename DerivedIterator,
typename AccessorType>
474 const DerivedIterator &other)
const
476 return !(*
this < other);
481template <
typename DerivedIterator,
typename AccessorType>
484 const DerivedIterator &other)
const
486 Assert(this->accessor.container == other.accessor.container,
488 "Only iterators pointing to the same container can be compared."));
489 return this->accessor.linear_index < other.accessor.linear_index;
494template <
typename DerivedIterator,
typename AccessorType>
497 const DerivedIterator &other)
const
499 return other < static_cast<const DerivedIterator &>(*
this);
504template <
typename DerivedIterator,
typename AccessorType>
506 const AccessorType accessor)
reference operator*() const
std::enable_if_t< std::is_convertible_v< OtherIterator, DerivedIterator >, bool > operator!=(const OtherIterator &right) const
LinearIndexIterator(const AccessorType accessor)
std::enable_if_t< std::is_convertible_v< OtherIterator, DerivedIterator >, bool > operator==(const OtherIterator &right) const
bool operator>=(const DerivedIterator &) const
difference_type operator-(const DerivedIterator &p) const
bool operator<=(const DerivedIterator &) const
DerivedIterator & operator++()
DerivedIterator operator--(int)
DerivedIterator operator++(int)
bool operator>(const DerivedIterator &) const
pointer operator->() const
const value_type * pointer
LinearIndexIterator()=default
DerivedIterator operator-(const difference_type n) const
std::random_access_iterator_tag iterator_category
typename value_type::size_type size_type
bool operator<(const DerivedIterator &) const
DerivedIterator operator+(const difference_type n) const
const value_type & reference
std::ptrdiff_t difference_type
DerivedIterator & operator=(const DerivedIterator &it)
DerivedIterator & operator-=(const difference_type n)
DerivedIterator & operator--()
DerivedIterator & operator+=(const difference_type n)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
#define Assert(cond, exc)
static ::ExceptionBase & ExcMessage(std::string arg1)