std::extents<IndexType,Extents...>::index-cast
来自cppreference.com
template< class OtherIndexType > static constexpr auto /*index-cast*/( OtherIndexType&& i ) noexcept; |
(C++23 起) (仅用于阐述*) |
|
将 OtherIndexType
类型的索引 i 转型为特定的整数类型。等价于:
- 当
OtherIndexType
是除 bool 外的整数类型时,为 return i; - 否则为 return static_cast<index_type>(i);。
参数
i | - | 要转型的索引 |
返回值
转型的索引。
注解
本节未完成 |
示例
本节未完成 原因:暂无示例 |
参阅
本节未完成 |