5#ifndef DUNE_COMMON_RANGE_UTILITIES_HH
6#define DUNE_COMMON_RANGE_UTILITIES_HH
37 typename std::enable_if<IsIterable<T>::value,
int>
::type = 0>
38 typename T::value_type
40 using std::max_element;
41 return *max_element(v.begin(), v.end());
45 typename std::enable_if<!IsIterable<T>::value,
int>
::type = 0>
54 typename std::enable_if<IsIterable<T>::value,
int>
::type = 0>
55 typename T::value_type
57 using std::min_element;
58 return *min_element(v.begin(), v.end());
62 typename std::enable_if<!IsIterable<T>::value,
int>
::type = 0>
71 typename std::enable_if<IsIterable<T>::value,
int>
::type = 0>
74 for (
const auto & e : v)
80 typename std::enable_if<!IsIterable<T>::value,
int>
::type = 0>
81 bool any_true(
const T & v) {
return v; }
83 template<std::
size_t N>
95 typename std::enable_if<IsIterable<T>::value,
int>
::type = 0>
98 for (
const auto & e : v)
103 template <
typename T,
104 typename std::enable_if<!IsIterable<T>::value,
int>
::type = 0>
105 bool all_true(
const T & v) {
return v; }
107 template<std::
size_t N>
119 class IntegralRangeIterator
122 typedef std::random_access_iterator_tag iterator_category;
123 typedef T value_type;
124 typedef std::make_signed_t<T> difference_type;
125 typedef const T *pointer;
128 constexpr IntegralRangeIterator() noexcept : value_(0) {}
129 constexpr explicit IntegralRangeIterator(value_type value) noexcept : value_(value) {}
131 pointer
operator->() const noexcept {
return &value_; }
132 constexpr reference
operator*() const noexcept {
return value_; }
134 constexpr reference operator[]( difference_type n )
const noexcept {
return (value_ + n); }
136 constexpr auto operator<=>(
const IntegralRangeIterator & other)
const noexcept =
default;
138 IntegralRangeIterator&
operator++() noexcept { ++value_;
return *
this; }
139 IntegralRangeIterator
operator++(
int)
noexcept { IntegralRangeIterator copy( *
this ); ++(*this);
return copy; }
141 IntegralRangeIterator&
operator--() noexcept { --value_;
return *
this; }
142 IntegralRangeIterator
operator--(
int)
noexcept { IntegralRangeIterator copy( *
this ); --(*this);
return copy; }
144 IntegralRangeIterator& operator+=(difference_type n)
noexcept { value_ += n;
return *
this; }
145 IntegralRangeIterator& operator-=(difference_type n)
noexcept { value_ -= n;
return *
this; }
147 friend constexpr IntegralRangeIterator operator+(
const IntegralRangeIterator &a, difference_type n)
noexcept {
return IntegralRangeIterator(a.value_ + n); }
148 friend constexpr IntegralRangeIterator operator+(difference_type n,
const IntegralRangeIterator &a)
noexcept {
return IntegralRangeIterator(a.value_ + n); }
149 friend constexpr IntegralRangeIterator operator-(
const IntegralRangeIterator &a, difference_type n)
noexcept {
return IntegralRangeIterator(a.value_ - n); }
151 constexpr difference_type operator-(
const IntegralRangeIterator &other)
const noexcept {
return (
static_cast<difference_type
>(value_) -
static_cast<difference_type
>(other.value_)); }
196 constexpr bool empty() const noexcept {
return (from_ == to_); }
222 template <
class T, T to, T from = 0>
225 template <T ofs, T... i>
226 static std::integer_sequence<T, (i+ofs)...> shift_integer_sequence(std::integer_sequence<T, i...>);
237 typedef decltype(shift_integer_sequence<from>(std::make_integer_sequence<T, to-from>()))
integer_sequence;
256 template <
class U, U i>
257 constexpr auto operator[](
const std::integral_constant<U, i> &)
const noexcept
258 -> std::integral_constant<value_type, from + static_cast<value_type>(i)>
267 static constexpr std::integral_constant<bool, from == to>
empty() noexcept {
return {}; }
269 static constexpr std::integral_constant<size_type, static_cast<size_type>(to) -
static_cast<size_type>(from) >
size()
noexcept {
return {}; }
285 template<
class T,
class U,
286 std::enable_if_t<std::is_same<std::decay_t<T>, std::decay_t<U>>::value,
int> = 0,
287 std::enable_if_t<std::is_integral<std::decay_t<T>>::value,
int> = 0>
293 template<
class T, std::enable_if_t<std::is_
integral<std::decay_t<T>>::value,
int> = 0>
299 template<
class T, std::enable_if_t<std::is_enum<std::decay_t<T>>::value,
int> = 0>
305 template<
class T, T from, T to>
311 template<
class T, T to>
342 template <class I, class F, class TT, class C = typename std::iterator_traits<I>::iterator_category>
343 class TransformedRangeIterator;
345 template<
class I,
class F,
class TT,
class C>
346 struct TransformationRangeIteratorTraits
349 static decltype(
auto) transform(FF&& f,
const I& it) {
350 if constexpr (std::is_same_v<TT,IteratorTransformationTag>)
366 using reference =
decltype(transform(std::declval<F>(), std::declval<I>()));
368 using pointer = std::conditional_t<std::is_lvalue_reference_v<reference>, value_type*, ProxyArrowResult<reference>>;
369 using difference_type =
typename std::iterator_traits<I>::difference_type;
370 using Facade = Dune::IteratorFacade<TransformedRangeIterator<I,F,TT,C>, C, value_type, reference, pointer, difference_type>;
374 template <
class I,
class F,
class TT,
class C>
375 class TransformedRangeIterator :
376 public TransformationRangeIteratorTraits<I,F, TT, C>::Facade
378 using Traits = TransformationRangeIteratorTraits<I,F, TT, C>;
379 using Facade =
typename Traits::Facade;
381 static constexpr bool isBidirectional = std::is_convertible_v<C, std::bidirectional_iterator_tag>;
382 static constexpr bool isRandomAccess = std::is_convertible_v<C, std::random_access_iterator_tag>;
387 using reference =
typename Facade::reference;
388 using difference_type =
typename Facade::difference_type;
390 template<
class II,
class FF>
391 constexpr TransformedRangeIterator(II&& it, FF&& f) noexcept :
392 it_(std::forward<II>(it)),
393 f_(std::forward<FF>(f))
398 std::enable_if_t<std::is_convertible_v<II, I> and std::is_default_constructible_v<F>,
int> =0>
399 constexpr TransformedRangeIterator(II&& it) noexcept :
400 it_(std::forward<II>(it)),
406 std::enable_if_t<std::is_convertible_v<FF, F> and std::is_default_constructible_v<I>,
int> =0>
407 constexpr TransformedRangeIterator(FF&& f) noexcept :
409 f_(std::forward<FF>(f))
424 constexpr TransformedRangeIterator() noexcept :
430 constexpr reference
operator*() const noexcept {
431 return Traits::transform(f_, it_);
436 friend Dune::IteratorFacadeAccess;
441 const I& baseIterator() const noexcept {
445 I& baseIterator() noexcept {
493 template <
class R,
class F,
class T=ValueTransformationTag>
496 using RawConstIterator = std::decay_t<decltype(std::declval<const R>().begin())>;
497 using RawIterator = std::decay_t<decltype(std::declval<R>().begin())>;
507 using const_iterator = Impl::TransformedRangeIterator<RawConstIterator, const F*, T>;
515 using iterator = Impl::TransformedRangeIterator<RawIterator, F*, T>;
528 template<
class RR,
class FF>
530 rawRange_(std::forward<RR>(
rawRange)),
531 f_(std::forward<FF>(f))
533 static_assert(std::is_same_v<T, ValueTransformationTag> or std::is_same_v<T, IteratorTransformationTag>,
534 "The TransformationType passed to TransformedRangeView has to be either ValueTransformationTag or IteratorTransformationTag.");
550 return iterator(rawRange_.begin(), &f_);
566 return iterator(rawRange_.end(), &f_);
573 std::enable_if_t<std::is_same_v<typename It::iterator_category,std::random_access_iterator_tag>,
int> = 0>
574 constexpr decltype(
auto)
operator[](std::size_t i)
const noexcept
576 return this->
begin()[i];
583 std::enable_if_t<std::is_same_v<typename It::iterator_category,std::random_access_iterator_tag>,
int> = 0>
584 constexpr decltype(
auto)
operator[](std::size_t i)
noexcept
586 return this->
begin()[i];
599 template<
class Range=R,
600 class = std::void_t<decltype(std::declval<const Range>().
size())>>
603 return rawRange_.size();
609 constexpr bool empty() const noexcept
611 return rawRange_.begin() == rawRange_.end();
663 template <
class R,
class F>
696 template <
class R,
class F>
715 template<
class Range>
718 return std::tuple<
decltype(*it),
decltype(it.index())>(*it, it.index());
Traits for type conversions and type information.
This file implements iterator facade classes for writing stl conformant iterators.
size_type size() const
Get the number of elements in the list.
Definition arraylist.hh:470
auto iteratorTransformedRangeView(R &&range, F &&f)
Create a TransformedRangeView using an iterator transformation.
Definition rangeutilities.hh:697
auto transformedRangeView(R &&range, F &&f)
Create a TransformedRangeView.
Definition rangeutilities.hh:664
static constexpr IntegralRange< std::decay_t< T > > range(T &&from, U &&to) noexcept
free standing function for setting up a range based for loop over an integer range for (auto i: range...
Definition rangeutilities.hh:288
auto sparseRange(Range &&range)
Allow structured-binding for-loops for sparse iterators.
Definition rangeutilities.hh:716
std::enable_if_t< not Impl::disableCopyMoveHelper< This, T... >::value, int > disableCopyMove
Helper to disable constructor as copy and move constructor.
Definition typeutilities.hh:45
typename AutonomousValueType< T >::type AutonomousValue
Type free of internal references that T can be converted to.
Definition typetraits.hh:566
constexpr decltype(auto) operator++()
Preincrement operator.
Definition iteratorfacades.hh:1138
constexpr decltype(auto) operator*() const
Dereferencing operator.
Definition iteratorfacades.hh:1119
constexpr pointer operator->() const
Arrow access to members of referenced value.
Definition iteratorfacades.hh:1129
constexpr decltype(auto) operator--()
Predecrement operator.
Definition iteratorfacades.hh:1169
MPI_Datatype MPITraits< ParallelLocalIndex< T > >::type
Definition plocalindex.hh:317
Dune namespace
Definition alignedallocator.hh:13
bool any_true(const AlignedNumber< bool, align > &val)
Definition debugalign.hh:506
bool all_true(const AlignedNumber< bool, align > &val)
Definition debugalign.hh:512
T max_value(const AlignedNumber< T, align > &val)
Definition debugalign.hh:494
T min_value(const AlignedNumber< T, align > &val)
Definition debugalign.hh:500
dynamic integer range for use in range-based for loops
Definition rangeutilities.hh:171
constexpr iterator begin() const noexcept
obtain a random-access iterator to the first element
Definition rangeutilities.hh:188
constexpr iterator end() const noexcept
obtain a random-access iterator past the last element
Definition rangeutilities.hh:190
std::make_unsigned_t< T > size_type
unsigned integer type corresponding to value_type
Definition rangeutilities.hh:178
Impl::IntegralRangeIterator< T > iterator
type of iterator
Definition rangeutilities.hh:176
constexpr value_type operator[](const value_type &i) const noexcept
access specified element
Definition rangeutilities.hh:193
constexpr bool contains(value_type index) const noexcept
check whether given index is within range [from, to)
Definition rangeutilities.hh:201
constexpr bool empty() const noexcept
check whether the range is empty
Definition rangeutilities.hh:196
constexpr IntegralRange(std::pair< value_type, value_type > range) noexcept
construct integer range std::pair
Definition rangeutilities.hh:185
constexpr IntegralRange(value_type from, value_type to) noexcept
construct integer range [from, to)
Definition rangeutilities.hh:181
constexpr size_type size() const noexcept
obtain number of elements in the range
Definition rangeutilities.hh:198
constexpr IntegralRange(value_type to) noexcept
construct integer range [0, to)
Definition rangeutilities.hh:183
T value_type
type of integers contained in the range
Definition rangeutilities.hh:174
static integer range for use in range-based for loops
Definition rangeutilities.hh:224
static constexpr iterator end() noexcept
obtain a random-access iterator past the last element
Definition rangeutilities.hh:253
decltype(shift_integer_sequence< from >(std::make_integer_sequence< T, to-from >())) integer_sequence
type of corresponding std::integer_sequence
Definition rangeutilities.hh:237
static constexpr bool contains(value_type index) noexcept
check whether given index is within range [from, to)
Definition rangeutilities.hh:272
constexpr StaticIntegralRange() noexcept=default
default constructor
std::make_unsigned_t< T > size_type
unsigned integer type corresponding to value_type
Definition rangeutilities.hh:234
T value_type
type of integers contained in the range
Definition rangeutilities.hh:230
constexpr auto operator[](const std::integral_constant< U, i > &) const noexcept -> std::integral_constant< value_type, from+static_cast< value_type >(i)>
access specified element (static version)
Definition rangeutilities.hh:257
static constexpr std::integral_constant< bool, from==to > empty() noexcept
check whether the range is empty
Definition rangeutilities.hh:267
static constexpr iterator begin() noexcept
obtain a random-access iterator to the first element
Definition rangeutilities.hh:251
static constexpr integer_sequence to_integer_sequence() noexcept
return corresponding std::integer_sequence
Definition rangeutilities.hh:248
constexpr value_type operator[](const size_type &i) const noexcept
access specified element (dynamic version)
Definition rangeutilities.hh:264
Impl::IntegralRangeIterator< T > iterator
type of iterator
Definition rangeutilities.hh:232
static constexpr std::integral_constant< size_type, static_cast< size_type >(to) - static_cast< size_type >(from) > size() noexcept
obtain number of elements in the range
Definition rangeutilities.hh:269
Tag to enable value based transformations in TransformedRangeView.
Definition rangeutilities.hh:322
Tag to enable iterator based transformations in TransformedRangeView.
Definition rangeutilities.hh:327
A range transforming the values of another range on-the-fly.
Definition rangeutilities.hh:495
Impl::TransformedRangeIterator< RawIterator, F *, T > iterator
Iterator type.
Definition rangeutilities.hh:515
constexpr TransformedRangeView(RR &&rawRange, FF &&f) noexcept
Construct from range and function.
Definition rangeutilities.hh:529
constexpr iterator end() noexcept
Definition rangeutilities.hh:565
Impl::TransformedRangeIterator< RawConstIterator, const F *, T > const_iterator
Const iterator type.
Definition rangeutilities.hh:507
std::remove_reference_t< R > RawRange
Export type of the wrapped untransformed range.
Definition rangeutilities.hh:523
constexpr iterator begin() noexcept
Definition rangeutilities.hh:549
RawRange & rawRange() noexcept
Export the wrapped untransformed range.
Definition rangeutilities.hh:625
const RawRange & rawRange() const noexcept
Export the wrapped untransformed range.
Definition rangeutilities.hh:617
constexpr const_iterator begin() const noexcept
Obtain a iterator to the first element.
Definition rangeutilities.hh:545
auto size() const noexcept
Obtain the size of the range.
Definition rangeutilities.hh:601
constexpr const_iterator end() const noexcept
Obtain a iterator past the last element.
Definition rangeutilities.hh:561
constexpr bool empty() const noexcept
Checks whether the range is empty.
Definition rangeutilities.hh:609
Check if a type is callable with ()-operator and given arguments.
Definition typetraits.hh:162