3#ifndef TETL_UTILITY_INTEGER_SEQUENCE_HPP
4#define TETL_UTILITY_INTEGER_SEQUENCE_HPP
13template <
typename T, T... Ints>
19 [[nodiscard]]
static constexpr auto size() noexcept ->
size_t {
return sizeof...(Ints); }
22template <
typename T, T Size>
#define TETL_BUILTIN_INT_SEQ(T, N)
Definition builtin_functions.hpp:113
Definition adjacent_find.hpp:8
constexpr bool is_integral_v
Definition is_integral.hpp:28
TETL_BUILTIN_INT_SEQ(T, Size) make_integer_sequence
Definition integer_sequence.hpp:23
Definition integer_sequence.hpp:14
etl::size_t value_type
Definition integer_sequence.hpp:17
static constexpr auto size() noexcept -> size_t
Definition integer_sequence.hpp:19