I have a CurrentValueSubject
in an object and I want another CurrentValueSubject
to copy the changes of the first one.
I can't find a way of easily doing that without having to do something like this:
subjectA.assign(to: \.value, on: subjectB).store(in: &cancelables)
It would be nice to be able to initialize the subjectB
using subjectA
. Is there a way of doing something like that?
Edit: For example I was thinking it would be great to be able to do something like:
let subjectB = CurrentValueSubject(from: subjectA)
I would just have the second publisher be a subscriber to the first publisher. Example:
Example of usage:
Output:
So both publishers are giving out the same value, which seems to be what you want.