Skip to content

Instantly share code, notes, and snippets.

@Yerazhas
Created November 17, 2019 03:10
Show Gist options
  • Select an option

  • Save Yerazhas/13dcbf1b499b3edf5936433529aaac00 to your computer and use it in GitHub Desktop.

Select an option

Save Yerazhas/13dcbf1b499b3edf5936433529aaac00 to your computer and use it in GitHub Desktop.
func request(to route: Route, completion: @escaping (Response?, Error?)) {
...
}
enum Result<T> {
case success(T)
case failure(Error)
}
func request1(to route: Route, completion: @escaping Result<Response>) {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment