3#ifndef TETL_MDSPAN_LAYOUT_MAPPING_ALIKE_HPP
4#define TETL_MDSPAN_LAYOUT_MAPPING_ALIKE_HPP
10namespace etl::detail {
14concept layout_mapping_alike =
requires {
15 requires detail::is_extents<typename M::extents_type>;
16 { M::is_always_strided() } -> same_as<bool>;
17 { M::is_always_exhaustive() } -> same_as<bool>;
18 { M::is_always_unique() } -> same_as<bool>;
integral_constant< bool, B > bool_constant
Definition bool_constant.hpp:11