I am using a Publisher<Int,Never>
in combine, and I am trying to return a Published<Int>.Publisher
It is possible in combine to transform an AnyPublisher<Int,Never>
into a Published<Int>.Publisher
?
I am using a Publisher<Int,Never>
in combine, and I am trying to return a Published<Int>.Publisher
It is possible in combine to transform an AnyPublisher<Int,Never>
into a Published<Int>.Publisher
?
Copyright © 2021 Jogjafile Inc.
No, this is not possible.
AnyPublisher
is a type erased version ofPublisher
. Once you type erase a variable, the original type information is lost (or at the very least hidden) for the lifetime of the object, you cannot convert it back to the original type.If you need to return a
Published<Int>.Publisher
, simply make that the return type of your function.Published<Int>.Publisher
is a struct, so you can use it as a return type (unlikePublisher
, which is a protocol with associated types).