RxSwift/RxBlocking
Krunoslav Zaher 9c893e75f4 Merges `RxSwift.xcodeproj`, `RxCocoa.xcodeproj` and `RxBlocking.xcodeproj` to `Rx.xcodeproj`. 2015-08-24 00:06:52 +02:00
..
Observable+Blocking.swift Merges `RxSwift.xcodeproj`, `RxCocoa.xcodeproj` and `RxBlocking.xcodeproj` to `Rx.xcodeproj`. 2015-08-24 00:06:52 +02:00
README.md Adds blocking operators. 2015-07-12 18:44:56 +02:00
RxBlocking.h Merges `RxSwift.xcodeproj`, `RxCocoa.xcodeproj` and `RxBlocking.xcodeproj` to `Rx.xcodeproj`. 2015-08-24 00:06:52 +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.

public func toArray<E>(source: Observable<E>)
    -> RxResult<[E]> {}

public func first<E>(source: Observable<E>)
    -> RxResult<E?> {}

public func last<E>(source: Observable<E>)
    -> RxResult<E?> {}