Created
August 10, 2017 15:50
-
-
Save ncreated/78e310773ee4e68a52f8c803f6cbeb62 to your computer and use it in GitHub Desktop.
Medium blogpost snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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