RxSwift/RxBlocking
2016-07-02 18:47:47 -05:00
..
BlockingObservable.swift Adds BlockingObservable. 2015-10-19 20:28:49 +02:00
BlockingObservable+Operators.swift builds ios, ios rx cocoa and ios rx blocking 2016-06-17 23:19:16 -07:00
Info.plist Improves version checking logic. #707 2016-05-31 21:33:38 +02:00
ObservableConvertibleType+Blocking.swift builds ios, ios rx cocoa and ios rx blocking 2016-06-17 23:19:16 -07:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00
RunLoopLock.swift Remove errant whitespace 2016-07-02 18:47:47 -05:00

RxBlocking

Set of blocking operators for easy unit testing.

Don't use these operators in production apps. These operators are only meant for testing purposes.

extension ObservableType {
    public func toArray() throws -> [E] {}
}

extension ObservableType {
    public func first() throws -> E? {}
}

extension ObservableType {
    public func last() throws -> E? {}
}