命名空间
变体
操作

operator==(std::extents)

来自 cppreference.cn
< cpp‎ | 容器‎ | mdspan‎ | extents
 
 
 
 
 
template< class OtherIndexType, std::size_t... OtherExtents >

friend constexpr bool operator==(

    const extents& lhs, const extents<OtherIndexType, OtherExtents...>& rhs ) noexcept;
(C++23 起)

比较两个 extents。如果 lhs.rank() 等于 rhs.rank(),并且对于 rhs 的每个秩索引 rlhs.extent(r) 都等于 rhs.extent(r),则返回 true;否则返回 false

[编辑] 参数

lhs, rhs - 要比较的 extents 的值

[编辑] 返回值

如果 lhsrhs 表示的 extents 相等,则返回 true,否则返回 false

[编辑] 示例