mirror of
https://github.com/zhigang1992/RxSwift.git
synced 2026-06-18 07:29:30 +08: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?> {}