Namespaces
Variants

std::execution:: just_stopped

From cppreference.net
ヘッダーで定義 <execution>
inline constexpr just_stopped_t just_stopped { } ;
struct just_stopped_t { /*unspecified*/ } ;
(C++26以降)
(カスタマイゼーションポイントオブジェクト)
呼び出しシグネチャ
execution :: sender auto just_stopped ( ) ;
(C++26以降)

レシーバーの set_stopped() を呼び出すことで即座に完了するsenderを返すsenderファクトリ。

just_stopped ( ) 式等価 です /*make-sender*/ ( just_stopped )

カスタマイゼーションポイントオブジェクト

名前 execution::just_stopped カスタマイゼーションポイントオブジェクト を表し、これは 関数オブジェクト のconstな リテラル semiregular クラス型である。その型のCV修飾されないバージョンは execution::just_stopped_t と表されるタグ型である。詳細は CustomizationPointObject を参照。