4#ifndef TETL_MDSPAN_IS_EXTENTS_HPP
5#define TETL_MDSPAN_IS_EXTENTS_HPP
7#include <etl/_cstddef/size_t.hpp>
11template <
typename IndexType, size_t... Extents>
16inline constexpr auto is_extents =
false;
18template <
typename IndexType, size_t... Extents>
19inline constexpr auto is_extents<extents<IndexType, Extents...>> =
true;
Definition adjacent_find.hpp:9
Definition extents.hpp:23