命名空间
变体
操作

operator==(std::extents)

来自 cppreference.com
< 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。如果 true lhs.rank() 等于 rhs.rank() 并且 lhs.extent(r) 等于 rhs.extent(r) 对于 rhs 的每个秩索引 r;否则返回 false.

[编辑] 参数

lhs, rhs - 要比较其值的 extents

[编辑] 返回值

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

[编辑] 示例