std::ranges::join_with_view<V,Pattern>:: end
|
constexpr
auto
end
(
)
;
|
(1) | (C++23以降) |
|
constexpr
auto
end
(
)
const
requires
ranges::
forward_range
<
const
V
>
&&
|
(2) | (C++23以降) |
iterator
または
sentinel
を返します。これは
join_with_view
の終端イテレータと等価比較されます。
- 以下の条件がすべて満たされる場合、イテレータを返します:
-
-
Vがforward_rangeおよびcommon_rangeをモデル化している。 -
std::
is_reference_v
<
InnerRng > が true である。 -
InnerRngがforward_rangeおよびcommon_rangeをモデル化している。
-
- それ以外の場合、センチネルを返します。
- 以下の条件が全て満たされる場合、イテレータを返す:
-
-
const
V
が
common_rangeをモデル化する。 -
ranges::
range_reference_t
<
const
V
>
が
forward_rangeおよびcommon_rangeをモデル化する。
-
const
V
が
- それ以外の場合、センチネルを返す。
戻り値
| オーバーロード | 戻り値 | |
|---|---|---|
| イテレータ | センチネル | |
| (1) |
iterator
<
simple-view
<
V
>
&&
simple-view
<
Pattern
>>
{
*
this,
ranges::
end
(
base_
)
}
|
sentinel
<
simple-view
<
V
>
&&
simple-view
<
Pattern
>>
{
*
this
}
|
| (2) |
iterator
<
true
>
{
*
this,
ranges::
end
(
base_
)
}
|
sentinel
<
true
>
{
*
this
}
|
例
|
このセクションは不完全です
理由: 例がありません |
関連項目
|
先頭を指すイテレータを返す
(公開メンバ関数) |
|
|
(C++20)
|
範囲の終端を示すセンチネルを返す
(カスタマイゼーションポイントオブジェクト) |