std::extents<IndexType,Extents...>::index-cast
来自 cppreference.com
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 | - | 要转换的索引 |
[编辑] 返回值
转换后的索引。
[编辑] 注释
本节不完整 |
[编辑] 示例
本节不完整 原因:没有示例 |
[编辑] 另请参见
本节不完整 |