std::mdspan<T,Extents,LayoutPolicy,AccessorPolicy>::operator[]
来自cppreference.com
template< class... OtherIndexTypes > constexpr reference operator[]( OtherIndexTypes... indices ) const; |
(1) | (C++23 起) |
template< class OtherIndexType > constexpr reference operator[] |
(2) | (C++23 起) |
template< class OtherIndexType > constexpr reference operator[] |
(3) | (C++23 起) |
返回 mdspan 的第 indices 个元素的引用。
1) 等价于 return acc_.access(ptr_, map_(static_cast<index_type>(std::move(indices))...));。
只有在以下情况下,此重载才会参与重载决议:
- (std::is_convertible_v<OtherIndexTypes, index_type> && ...) 为 true,
- (std::is_nothrow_constructible_v<index_type, OtherIndexTypes> && ...) 为 true,并且
- sizeof...(OtherIndexTypes) == rank() 为 true。
令
I
为 extents_type::
index-cast
(std::move(indices))。当 I
不是 extents() 中的多维索引,即 map_(I) < map_.required_span_size() 为 false 时,行为未定义。2,3) 令
P
为形参包,当std::is_same_v<make_index_sequence<rank()>, index_sequence<P...>> 为 true 时,该运算符等价于 return operator[](extents_type::index-cast
(std::as_const(indices[P]))...);。 只有在以下情况下,此重载才会参与重载决议:
- std::is_convertible_v<const OtherIndexType&, index_type> 是 true,并且
- std::is_nothrow_constructible_v<index_type, const OtherIndexType&> 是 true。
参数
indices | - | 要访问的元素的索引 |
返回值
元素的引用。
示例
本节未完成 原因:暂无示例 |
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 3974 | C++23 | 重载 (2,3) 没有应用 extents_type:: index-cast
|
会应用 |
参阅
本节未完成 |