operator==(std::extents)
From cppreference.com
| template< class OtherIndexType, std::size_t... OtherExtents > friend constexpr bool operator==( |
(C++23から) | |
2つのextentsを比較します。lhsのランクがrhsのランクに等しく、かつ、rhsのすべてのランクインデックスrについてlhs.extent(r)がrhs.extent(r)に等しい場合にtrueを返します。それ以外の場合はfalseを返します。
[編集] パラメータ
| lhs, rhs | - | 比較するextentsの値 |
[編集] 戻り値
lhsとrhsが表すextentsが等しい場合はtrue、それ以外の場合はfalse
[編集] 例
| このセクションは未完成です 理由: 例がありません |