![]() |
deal.II version GIT relicensing-2581-gae2745de1b 2025-02-07 22:30:00+00:00
|
#include <deal.II/base/config.h>
#include <deal.II/base/exceptions.h>
#include <iterator>
#include <tuple>
Go to the source code of this file.
Classes | |
struct | SynchronousIterators< Iterators > |
Functions | |
template<typename Iterators > | |
bool | operator< (const SynchronousIterators< Iterators > &a, const SynchronousIterators< Iterators > &b) |
template<typename Iterators > | |
std::size_t | operator- (const SynchronousIterators< Iterators > &a, const SynchronousIterators< Iterators > &b) |
template<typename I1 , typename I2 > | |
void | advance (std::tuple< I1, I2 > &t, const unsigned int n) |
template<typename I1 , typename I2 , typename I3 > | |
void | advance (std::tuple< I1, I2, I3 > &t, const unsigned int n) |
template<typename I1 , typename I2 , typename I3 , typename I4 > | |
void | advance (std::tuple< I1, I2, I3, I4 > &t, const unsigned int n) |
template<typename I1 , typename I2 > | |
void | prev (std::tuple< I1, I2 > &t) |
template<typename I1 , typename I2 , typename I3 > | |
void | prev (std::tuple< I1, I2, I3 > &t) |
template<typename I1 , typename I2 , typename I3 , typename I4 > | |
void | prev (std::tuple< I1, I2, I3, I4 > &t) |
template<typename I1 , typename I2 > | |
void | advance_by_one (std::tuple< I1, I2 > &t) |
template<typename I1 , typename I2 , typename I3 > | |
void | advance_by_one (std::tuple< I1, I2, I3 > &t) |
template<typename I1 , typename I2 , typename I3 , typename I4 > | |
void | advance_by_one (std::tuple< I1, I2, I3, I4 > &t) |
template<typename Iterators > | |
SynchronousIterators< Iterators > | operator+ (const SynchronousIterators< Iterators > &a, const std::size_t n) |
template<typename Iterators > | |
SynchronousIterators< Iterators > & | operator++ (SynchronousIterators< Iterators > &a) |
template<typename Iterators > | |
SynchronousIterators< Iterators > & | operator-- (SynchronousIterators< Iterators > &a) |
template<typename Iterators > | |
SynchronousIterators< Iterators > | operator++ (SynchronousIterators< Iterators > &a, int) |
template<typename Iterators > | |
bool | operator!= (const SynchronousIterators< Iterators > &a, const SynchronousIterators< Iterators > &b) |
|
inline |
Return whether the first element of the first argument is less than the first element of the second argument. Since the objects compared march forward all elements at the same time, comparing the first element is sufficient.
Definition at line 123 of file synchronous_iterator.h.
|
inline |
Return the distance between the first and the second argument. Since the objects compared march forward all elements at the same time, differencing the first element is sufficient.
Definition at line 141 of file synchronous_iterator.h.
|
inline |
Advance a tuple of iterators by \(n\).
Definition at line 157 of file synchronous_iterator.h.
|
inline |
Advance a tuple of iterators by \(n\).
Definition at line 170 of file synchronous_iterator.h.
|
inline |
Advance a tuple of iterators by \(n\).
Definition at line 184 of file synchronous_iterator.h.
|
inline |
Reverse a tuple of iterators by 1.
Definition at line 199 of file synchronous_iterator.h.
|
inline |
Reverse a tuple of iterators by 1.
Definition at line 212 of file synchronous_iterator.h.
|
inline |
Reverse a tuple of iterators by 1.
Definition at line 226 of file synchronous_iterator.h.
|
inline |
Advance a tuple of iterators by 1.
Definition at line 241 of file synchronous_iterator.h.
|
inline |
Advance a tuple of iterators by 1.
Definition at line 254 of file synchronous_iterator.h.
|
inline |
Advance a tuple of iterators by 1.
Definition at line 268 of file synchronous_iterator.h.
|
inline |
Advance the elements of this iterator by \(n\).
Definition at line 283 of file synchronous_iterator.h.
|
inline |
Advance the elements of this iterator by 1 (pre-increment).
Definition at line 297 of file synchronous_iterator.h.
|
inline |
Reverse the elements of this iterator by 1 (pre-decrement).
Definition at line 310 of file synchronous_iterator.h.
|
inline |
Advance the elements of this iterator by 1 (post-increment).
Definition at line 323 of file synchronous_iterator.h.
|
inline |
Compare synch iterators for inequality. Since they march in synch, comparing only the first element is sufficient.
Definition at line 338 of file synchronous_iterator.h.