Generic Instance Method 総称体インスタンスメソッド

receive(subscriber:)

Implements the Publisher protocol by accepting the subscriber and immediately publishing the optional’s value if it has one, or finishing normally if it doesn’t. Publisherプロトコルを、加入者を受け入れるそして直ちにオプショナルのもつ値を出版すること、またはそれがそうしないならば普通に終了することによって実装します。

Declaration 宣言

func receive<S>(subscriber: S) where Wrapped == S.Input, S : Subscriber, S.Failure == Never

Parameters パラメータ

subscriber

The subscriber to add. 加えることになる加入者。

Relationships 関係

From Protocol 由来プロトコル