mirror of
https://github.com/zhigang1992/RxSwift.git
synced 2026-06-11 16:49:36 +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.
extension ObservableType {
public func toArray() throws -> [E] {}
}
extension ObservableType {
public func first() throws -> E? {}
}
extension ObservableType {
public func last() throws -> E? {}
}