RxSwift/RxBlocking
Krunoslav Zaher 1a798ddb31 Fixes automation tests, unit tests warnings and example app warnings. 2015-10-03 15:55:57 +02:00
..
Info.plist RxBlocking now has its own Info.plist 2015-08-29 13:09:35 +02:00
Observable+Blocking.swift Fixes automation tests, unit tests warnings and example app warnings. 2015-10-03 15:55:57 +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? {}
}