AnyPublisher

public extension AnyPublisher
  • Undocumented

    Declaration

    Swift

    static func just(_ output: Output) -> AnyPublisher<Output, Failure>
  • Undocumented

    Declaration

    Swift

    static func just(_ output: @autoclosure () throws -> Output) -> AnyPublisher<Output, Failure> where Failure == Error
  • Undocumented

    Declaration

    Swift

    static func fail(with error: Failure) -> AnyPublisher<Output, Failure>