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.

16 lines
356 B

5 years ago
5 years ago
5 years ago
  1. //
  2. // not+RxCocoa.swift
  3. // RxSwiftExt
  4. //
  5. // Created by Rafael Ferreira on 3/7/17.
  6. // Copyright © 2017 RxSwift Community. All rights reserved.
  7. //
  8. import RxCocoa
  9. extension SharedSequenceConvertibleType where Element == Bool {
  10. /// Boolean not operator.
  11. public func not() -> SharedSequence<SharingStrategy, Bool> {
  12. return map(!)
  13. }
  14. }