std::extents<IndexType,Extents...>::extent

来自cppreference.com
< cpp‎ | container‎ | mdspan‎ | extents
 
 
 
 
 
constexpr index_type extent( rank_type i ) const noexcept;
(C++23 起)

返回 extents 在特定秩索引上的动态尺度大小。

参数

i - 要获得尺度大小的秩索引

返回类型

extents 在特定秩索引上的动态尺度大小。

示例

#include <iostream>
#include <mdspan>
 
int main()
{
    std::extents<int, 1, 2> e1;
    std::extents<int, 3, std::dynamic_extent, std::dynamic_extent> e2(4, 5);
    std::cout << e1.extent(0) << ", " << e1.extent(1) << '\n';
    std::cout << e2.extent(0) << ", " << e2.extent(1) << ", " << e2.extent(2) << '\n';
}

输出:

1, 2
3, 4, 5

参阅

返回 extents 在特定秩索引上的静态尺度大小
(公开静态成员函数)
(C++11)
获取数组类型在指定维度的大小
(类模板)