A Combine publisher that publishes this instance’s value to each subscriber exactly once, if it has a value at all.
あるCombineパブリッシャー、それはこのインスタンスのもつ値を各加入者に正確に一度だけ発行します、とにかくそれが値を持つならば。
In the following example, the publisher for an Int? optional publishes its value once, then finishes normally:
以下の例において、あるInt?オプショナルに対するパブリッシャーは、それの値を一度だけ出版します、それから正常に終了します:
In contrast with the Just publisher, which always publishes a single value, this publisher might not send any values and instead finish normally if the optional’s output is nil. In the next example, an Int? optional that’s nil immediately sends the Subscribers.Completion.finished completion, without producing any values.
常にある単一の値を出版するJustパブリッシャーと対照的に、このパブリッシャーは全く値を送信しないで代わりに正常に終了するかもしれません、もしoutputがnilであるならば。次の例において、あるInt?オプショナルでnilであるものは、直接にSubscribers.Completion.finished達成状態を送信します、何ら値を生み出すことなしに。
The type of a Combine publisher that publishes the value of a Swift optional instance to each subscriber exactly once, if the instance has any value at all.
あるCombineパブリッシャーの型、それはあるSwiftオプショナルインスタンスの値を各加入者に正確に一度だけ発行するものです、とにかくそのインスタンスが値を何らかの持つならば。