// // ignore.swift // RxSwiftExt // // Created by Thane Gill on 18/04/16. // Copyright © 2016 RxSwift Community. All rights reserved. // import Foundation import RxSwift extension ObservableType where E == Bool { /// Boolean not operator public func not() -> Observable { return self.map(!) } }