命名空间
变体
操作

std::extents<IndexType,Extents...>::index-cast

来自 cppreference.com
< cpp‎ | 容器‎ | mdspan‎ | 范围
 
 
 
 
 
template< class OtherIndexType >
static constexpr auto /*index-cast*/( OtherIndexType&& i ) noexcept;
(自 C++23 起)
(仅供说明*)

将类型为 OtherIndexType 的索引 i 转换为某种整型。它等效于

  • return i;,如果 OtherIndexType 是除 bool 以外的整型,以及
  • return static_cast<index_type>(i); 否则。

内容

[编辑] 参数

i - 要转换的索引

[编辑] 返回值

转换后的索引。

[编辑] 注释

[编辑] 示例

[编辑] 另请参见