SignalConvertible

@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
public protocol SignalConvertible

A type that can be converted into a Signal

  • The Input type of the produced Signal

    Declaration

    Swift

    associatedtype Input
  • The Failure type of the produced Signal

    Declaration

    Swift

    associatedtype Failure : Error
  • The converted Signal

    Declaration

    Swift

    var signal: Signal<Input, Failure> { get }