You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
328 B

5 years ago
  1. //
  2. // ignore.swift
  3. // RxSwiftExt
  4. //
  5. // Created by Thane Gill on 18/04/16.
  6. // Copyright © 2016 RxSwift Community. All rights reserved.
  7. //
  8. import Foundation
  9. import RxSwift
  10. extension ObservableType where E == Bool {
  11. /// Boolean not operator
  12. public func not() -> Observable<Bool> {
  13. return self.map(!)
  14. }
  15. }