Namespaces
Variants

std::ranges::zip_view<Views...>:: begin

From cppreference.net
Ranges library
Range adaptors
constexpr auto begin ( )
requires ( ! ( /*simple-view*/ < Views > && ... ) ) ;
(1) (C++23以降)
constexpr auto begin ( ) const
requires ( ranges:: range < const Views > && ... ) ;
(2) (C++23以降)

iterator の先頭を取得します。

zip_view

目次

戻り値

注記

ranges:: range < const ranges:: zip_view < Views... >> がモデル化されるのは、かつその場合に限り、 Views... 内のすべての型 Vi について、 const Vi range をモデル化する場合である。

関連項目

終端を指すイテレータまたは番兵を返す
(公開メンバ関数)
範囲の先頭を指すイテレータを返す
(カスタマイゼーションポイントオブジェクト)