ObservableConvertibleType

public protocol ObservableConvertibleType

Type that can be converted to observable sequence (Observer<E>).

  • Converts self to Observable sequence.

    Declaration

    Swift

    func asObservable() -> Observable<E>

    Return Value

    Observable sequence that represents self.

  • E

    Type of elements in sequence.

    Declaration

    Swift

    associatedtype E