Skip to content

Instantly share code, notes, and snippets.

@ncreated
Created August 10, 2017 15:50
Show Gist options
  • Save ncreated/78e310773ee4e68a52f8c803f6cbeb62 to your computer and use it in GitHub Desktop.
Save ncreated/78e310773ee4e68a52f8c803f6cbeb62 to your computer and use it in GitHub Desktop.
Medium blogpost snippet
func manage(change: Observable<Bool>) -> (value: Driver<ToggleValue>, isBusy: Driver<Bool>) {
// ...
let initialValue = storage
.read()
.map { ToggleValue.initial($0) }
.catchError { Observable.just( ToggleValue.unknown($0) ) }
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment