Last active
July 17, 2017 19:57
-
-
Save ncreated/0e4ee3702aa5bf2de3d0ed06be201c26 to your computer and use it in GitHub Desktop.
Medium blogpost snippet
This file contains 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
import RxSwift | |
import RxCocoa | |
final class Autocomplete { | |
func autocomplete(text: Observable<String>) -> (result: Driver<AutocompleteResult>, | |
isBusy: Driver<Bool>) { | |
return (result: .empty(), isBusy: .empty()) // TODO | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment