std::mdspan<T,Extents,LayoutPolicy,AccessorPolicy>::mapping-traits
来自 cppreference.cn
constexpr bool is_unique() const; |
(1) | (C++23 起) |
constexpr bool is_exhaustive() const; |
(2) | (C++23 起) |
constexpr bool is_strided() const; |
(3) | (C++23 起) |
static constexpr bool is_always_unique(); |
(4) | (C++23 起) |
static constexpr bool is_always_exhaustive(); |
(5) | (C++23 起) |
static constexpr bool is_always_strided(); |
(6) | (C++23 起) |
检查 (1-3) 底层布局映射 map_
或 (4-6) 其类型 mapping_type
是否符合 LayoutMapping 的谓词映射特性语义。
1-3) 设
func
为 (1) is_unique
、(2) is_exhaustive
或 (3) is_strided
,则等价于 return map_.func();。4-6) 设
func
为 (4) is_always_unique
、(5) is_always_exhaustive
或 (6) is_always_strided
,则等价于 return mapping_type::func();。目录 |
[编辑] 参数
(无)
[编辑] 返回值
见上。
[编辑] 示例
本节不完整 原因:无示例 |
[编辑] 参阅
本节不完整 |