RxSwift/RxBlocking
Krunoslav Zaher 24062521b5 Adds unused warnings. 2015-10-19 21:59:31 +02:00
..
BlockingObservable+Operators.swift Adds `BlockingObservable`. 2015-10-19 20:28:49 +02:00
BlockingObservable.swift Adds `BlockingObservable`. 2015-10-19 20:28:49 +02:00
Info.plist RxBlocking now has its own Info.plist 2015-08-29 13:09:35 +02:00
ObservableConvertibleType+Blocking.swift Adds unused warnings. 2015-10-19 21:59:31 +02:00
README.md Documentation and interface cleanup. 2015-09-08 22:32:09 +02:00

README.md

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? {}
}