Skip to content

Instantly share code, notes, and snippets.

@erikolsson
Created February 12, 2017 20:47
Show Gist options
  • Save erikolsson/755bd33a7a6606884c8c7515d99e4050 to your computer and use it in GitHub Desktop.
Save erikolsson/755bd33a7a6606884c8c7515d99e4050 to your computer and use it in GitHub Desktop.
import Foundation
import RxSwift
extension ObservableType where E == Bool {
func negate() -> Observable<Bool> {
return map(!)
}
}
/*
Example:
Observable.of(true)
.negate() <- false
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment