Is it possible to dynamically add new values from signal A to the existing values in signal B, similar to how the scan operator works in RxJS? I am looking for something along the lines of
signalB = computed((value) => [...value, signalA()])
. Any suggestions on how this can be achieved?