Utilities for template meta programming. More...
#include <cstddef>
#include <utility>
Go to the source code of this file.
Namespaces | |
namespace | Dumux |
namespace | Dumux::Detail |
Distance implementation details. | |
Typedefs | |
template<std::size_t n, std::size_t e> | |
using | Dumux::makeIncompleteIntegerSequence = typename Detail::ConcatSeq< decltype(std::make_index_sequence< e >{}), e+1, decltype(std::make_index_sequence<(n > e) ?(n - e - 1) :0 >{})>::type |
Functions | |
template<std::size_t offset, std::size_t ... is> | |
constexpr std::index_sequence<(offset+is)... > | Dumux::addOffsetToIndexSequence (std::index_sequence< is... >) |
template<std::size_t offset, std::size_t n> | |
constexpr auto | Dumux::makeIndexSequenceWithOffset () |