What is the correct syntax of calling the following fetchURL function?
func fetchURL<T: Decodable>(_ url: URL) -> AnyPublisher<T, Error> {
URLSession.shared.dataTaskPublisher(for: url)
.map(\.data)
.decode(type: T.self, decoder: JSONDecoder())
.eraseToAnyPublisher()
}
I'm confused here.
let url = URL(string:"http://apple.com")
let publisher = fetchURL<[String].self>(url)????
You can't call a generic function by specifying its concrete type directly as you would, for example, with a
struct
- Swift needs to infer it.Since
T
only appears in the return value, Swift can only infer its type based on the type that you're assigning the return value to, so you need to be explicit about it:This is rather inconvenient, so a better approach is to add a Type parameter as a function's argument, which Swift would now use to infer the concrete type
T
:For example,
JSONDecoder.decode
uses the same approachAs suggested in comments, you can also specify a default value for the type, so you could omit it if the type can be otherwise inferred: