This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Combine | |
| public struct Double<Upstream,Output>: Publisher where Upstream:Publisher, Output : Numeric, Upstream.Output == Output { | |
| public typealias Failure = Upstream.Failure | |
| /// The upstream publisher. | |
| public let upstream: Upstream | |
| public init(upstream: Upstream) { | |
| self.upstream = upstream |
NewerOlder