4#ifndef TETL_UTILITY_INTEGER_SEQUENCE_HPP
5#define TETL_UTILITY_INTEGER_SEQUENCE_HPP
7#include <etl/_config/all.hpp>
9#include <etl/_cstddef/size_t.hpp>
10#include <etl/_type_traits/is_integral.hpp>
14template <
typename T, T... Ints>
16 static_assert(is_integral_v<T>,
"T must be an integral type.");
22 return sizeof...(Ints);
26template <
typename T, T Size>
27using make_integer_sequence = TETL_BUILTIN_INT_SEQ(
T,
Size);
Definition adjacent_find.hpp:9
Definition integer_sequence.hpp:15
static constexpr auto size() noexcept -> size_t
Definition integer_sequence.hpp:20