Namespaces
Variants

operator==,<,>,<=,>=,<=> (ranges::concat_view:: iterator )

From cppreference.net
Ranges library
Range adaptors
(注:このHTML要素には翻訳対象のテキストコンテンツが含まれていないため、元の構造を保持したまま出力します)
friend constexpr bool operator ==
( const /*iterator*/ & x, std:: default_sentinel_t ) ;
(1) (C++26以降)
friend constexpr bool operator ==

( const /*iterator*/ & x, const /*iterator*/ & y )
を提供する ( std:: equality_comparable < ranges:: iterator_t <

std:: conditional_t < Const, const Views, Views >>> && ... ) ;
(2) (C++26以降)
friend constexpr bool operator <

( const /*iterator*/ & x, const /*iterator*/ & y )

requires /*all-random-access*/ < Const, Views... > ;
(3) (C++26以降)
friend constexpr bool operator >

( const /*iterator*/ & x, const /*iterator*/ & y )

requires /*all-random-access*/ < Const, Views... > ;
(4) (C++26以降)
friend constexpr bool operator <=

( const /*iterator*/ & x, const /*iterator*/ & y )

requires /*all-random-access*/ < Const, Views... > ;
(5) (C++26以降)
friend constexpr bool operator >=

( const /*iterator*/ & x, const /*iterator*/ & y )

requires /*all-random-access*/ < Const, Views... > ;
(6) (C++26以降)
friend constexpr auto operator <=>

( const /*iterator*/ & x, const /*iterator*/ & y )
requires ( /*all-random-access*/ < Const, Views... > &&
( std:: three_way_comparable < ranges:: iterator_t <

std:: conditional_t < Const, const Views, Views >>> && ... ) ) ;
(7) (C++26以降)

イテレータを別のイテレータまたはセンチネルと比較します。

1) イテレータとセンチネルを比較します。
it_ x. it_  . valueless_by_exception ( ) true の場合、動作は未定義です。
2-7) 2つのイテレータを比較します。 != 演算子は synthesized され、 operator== から生成されます。
x x. it_  . valueless_by_exception ( ) || y. it_  . valueless_by_exception ( ) true の場合、動作は未定義です。

これらの関数は通常の unqualified lookup または qualified lookup では可視化されず、 argument-dependent lookup によってのみ発見され、その際 std::ranges::concat_view:: iterator <Const> が引数の関連クラスである場合に限ります。

パラメータ

x, y - 比較するイテレータ

戻り値

1)

x. it_  . index ( ) == ( sizeof... ( Views ) - 1 ) &&
x. get-iter  < sizeof... ( Views ) - 1 > ( ) == x. get-end  < sizeof... ( Views ) - 1 > ( )

2) x. it_ == y. it_
3) x. it_ < y. it_
4) x. it_ > y. it_
5) x. it_ <= y. it_
6) x. it_ >= y. it_
7) x. it_ <=> y. it_