DUNE PDELab (git)
Dune::StaticIntegralRange< T, to, from > Class Template Reference
static integer range for use in range-based for loops More...
#include <dune/common/rangeutilities.hh>
Public Member Functions | |
constexpr | StaticIntegralRange () noexcept=default |
default constructor | |
constexpr | operator IntegralRange< T > () const noexcept |
cast into dynamic IntegralRange | |
constexpr | operator integer_sequence () const noexcept |
cast into corresponding std::integer_sequence | |
template<class U , U i> | |
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) | |
constexpr value_type | operator[] (const size_type &i) const noexcept |
access specified element (dynamic version) | |
Static Public Member Functions | |
static constexpr integer_sequence | to_integer_sequence () noexcept |
return corresponding std::integer_sequence | |
static constexpr iterator | begin () noexcept |
obtain a random-access iterator to the first element | |
static constexpr iterator | end () noexcept |
obtain a random-access iterator past the last element | |
static constexpr std::integral_constant< bool, from==to > | empty () noexcept |
check whether the range is empty | |
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 | |
static constexpr bool | contains (value_type index) noexcept |
check whether given index is within range [from, to) | |
Detailed Description
template<class T, T to, T from = 0>
class Dune::StaticIntegralRange< T, to, from >
class Dune::StaticIntegralRange< T, to, from >
static integer range for use in range-based for loops
This is a compile-time static variant of the IntegralRange. Apart from returning all range information statically, it casts into the corresponding std::integer_sequence.
- Note
- This range can also be used in Hybrid::forEach, resulting in a static for loop over the contained integers like a std::integer_sequence.
- Template Parameters
-
T type of integers contained in the range to first element not contained in the range from first element contained in the range, defaults to 0
The documentation for this class was generated from the following file:
- dune/common/rangeutilities.hh
|
Legal Statements / Impressum |
Hosted by TU Dresden |
generated with Hugo v0.111.3
(Nov 12, 23:30, 2024)