RxSwift/RxBlocking
2015-07-12 21:49:15 +02:00
..
RxBlocking Adds blocking operators. 2015-07-12 18:44:56 +02:00
RxBlocking.xcodeproj Pre release polish. 2015-07-12 21:49:15 +02:00
README.md Adds blocking operators. 2015-07-12 18:44:56 +02: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.

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