5 #ifndef DUNE_COMMON_RANGE_UTILITIES_HH 6 #define DUNE_COMMON_RANGE_UTILITIES_HH 10 #include <type_traits> 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_); }
198 constexpr
size_type size() const noexcept {
return (static_cast<size_type>(to_) - static_cast<size_type>(from_)); }
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;
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))
397 disableCopyMove<TransformedRangeIterator,II> =0,
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)),
405 disableCopyMove<TransformedRangeIterator,FF> =0,
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_);
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
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
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());
728 #endif // DUNE_COMMON_RANGE_UTILITIES_HH static constexpr bool contains(value_type index) noexcept
check whether given index is within range [from, to)
Definition: rangeutilities.hh:272
A range transforming the values of another range on-the-fly.
Definition: rangeutilities.hh:494
decltype(shift_integer_sequence< from >(std::make_integer_sequence< T, to-from >())) typedef integer_sequence
type of corresponding std::integer_sequence
Definition: rangeutilities.hh:237
constexpr iterator end() const noexcept
obtain a random-access iterator past the last element
Definition: rangeutilities.hh:190
constexpr iterator begin() const noexcept
obtain a random-access iterator to the first element
Definition: rangeutilities.hh:188
T max_value(const AlignedNumber< T, align > &val)
Definition: debugalign.hh:494
constexpr const_iterator begin() const noexcept
Obtain a iterator to the first element.
Definition: rangeutilities.hh:545
auto sparseRange(Range &&range)
Allow structured-binding for-loops for sparse iterators.
Definition: rangeutilities.hh:716
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
constexpr value_type operator[](const value_type &i) const noexcept
access specified element
Definition: rangeutilities.hh:193
std::make_unsigned_t< T > size_type
unsigned integer type corresponding to value_type
Definition: rangeutilities.hh:234
constexpr iterator end() noexcept
Definition: rangeutilities.hh:565
This file implements iterator facade classes for writing stl conformant iterators.
T value_type
type of integers contained in the range
Definition: rangeutilities.hh:230
Impl::IntegralRangeIterator< T > iterator
type of iterator
Definition: rangeutilities.hh:176
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
bigunsignedint< k > operator+(const bigunsignedint< k > &x, std::uintmax_t y)
Definition: bigunsignedint.hh:558
Check if a type is callable with ()-operator and given arguments.
Definition: typetraits.hh:162
bool all_true(const AlignedNumber< bool, align > &val)
Definition: debugalign.hh:512
bigunsignedint< k > operator*(const bigunsignedint< k > &x, std::uintmax_t y)
Definition: bigunsignedint.hh:572
auto iteratorTransformedRangeView(R &&range, F &&f)
Create a TransformedRangeView using an iterator transformation.
Definition: rangeutilities.hh:697
constexpr IntegralRange(value_type from, value_type to) noexcept
construct integer range [from, to)
Definition: rangeutilities.hh:181
constexpr value_type operator[](const size_type &i) const noexcept
access specified element (dynamic version)
Definition: rangeutilities.hh:264
const RawRange & rawRange() const noexcept
Export the wrapped untransformed range.
Definition: rangeutilities.hh:617
static constexpr iterator begin() noexcept
obtain a random-access iterator to the first element
Definition: rangeutilities.hh:251
I i
Definition: hybridmultiindex.hh:328
bool any_true(const AlignedNumber< bool, align > &val)
Definition: debugalign.hh:506
static integer range for use in range-based for loops
Definition: rangeutilities.hh:223
Dune namespace
Definition: alignedallocator.hh:12
auto transformedRangeView(R &&range, F &&f)
Create a TransformedRangeView.
Definition: rangeutilities.hh:664
RawRange & rawRange() noexcept
Export the wrapped untransformed range.
Definition: rangeutilities.hh:625
constexpr bool empty() const noexcept
Checks whether the range is empty.
Definition: rangeutilities.hh:609
constexpr size_type size() const noexcept
obtain number of elements in the range
Definition: rangeutilities.hh:198
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
This class encapsulates access of IteratorFacade.
Definition: iteratorfacades.hh:785
bigunsignedint< k > operator-(const bigunsignedint< k > &x, std::uintmax_t y)
Definition: bigunsignedint.hh:565
constexpr IntegralRange(std::pair< value_type, value_type > range) noexcept
construct integer range std::pair
Definition: rangeutilities.hh:185
Tag to enable iterator based transformations in TransformedRangeView.
Definition: rangeutilities.hh:327
std::make_unsigned_t< T > size_type
unsigned integer type corresponding to value_type
Definition: rangeutilities.hh:178
constexpr iterator begin() noexcept
Definition: rangeutilities.hh:549
T min_value(const AlignedNumber< T, align > &val)
Definition: debugalign.hh:500
std::remove_reference_t< R > RawRange
Export type of the wrapped untransformed range.
Definition: rangeutilities.hh:523
Impl::TransformedRangeIterator< RawIterator, F *, T > iterator
Iterator type.
Definition: rangeutilities.hh:515
auto size() const noexcept
Obtain the size of the range.
Definition: rangeutilities.hh:601
static constexpr iterator end() noexcept
obtain a random-access iterator past the last element
Definition: rangeutilities.hh:253
Impl::IntegralRangeIterator< T > iterator
type of iterator
Definition: rangeutilities.hh:232
dynamic integer range for use in range-based for loops
Definition: rangeutilities.hh:170
CRTP-Mixing class for stl conformant iterators of given iterator category.
Definition: iteratorfacades.hh:1052
constexpr TransformedRangeView(RR &&rawRange, FF &&f) noexcept
Construct from range and function.
Definition: rangeutilities.hh:529
constexpr const_iterator end() const noexcept
Obtain a iterator past the last element.
Definition: rangeutilities.hh:561
constexpr bool contains(value_type index) const noexcept
check whether given index is within range [from, to)
Definition: rangeutilities.hh:201
typename AutonomousValueType< T >::type AutonomousValue
Type free of internal references that T can be converted to.
Definition: typetraits.hh:566
Traits for type conversions and type information.
Tag to enable value based transformations in TransformedRangeView.
Definition: rangeutilities.hh:322
T value_type
type of integers contained in the range
Definition: rangeutilities.hh:174
static constexpr std::integral_constant< bool, from==to > empty() noexcept
check whether the range is empty
Definition: rangeutilities.hh:267
Impl::TransformedRangeIterator< RawConstIterator, const F *, T > const_iterator
Const iterator type.
Definition: rangeutilities.hh:507
static constexpr integer_sequence to_integer_sequence() noexcept
return corresponding std::integer_sequence
Definition: rangeutilities.hh:248
constexpr IntegralRange(value_type to) noexcept
construct integer range [0, to)
Definition: rangeutilities.hh:183
constexpr bool empty() const noexcept
check whether the range is empty
Definition: rangeutilities.hh:196