I have an effect stack with a Writer () in it someplace. I want to keep the stack the same, but instead of having Writer () in that place, I want Writer w for some suitable w. If I was using MTL, I would use mapWriter to achieve this, but there seems to be no analog for it here.
Is this possible to define somehow, and if so, how would I do it?
I have an effect stack with a
Writer ()
in it someplace. I want to keep the stack the same, but instead of havingWriter ()
in that place, I wantWriter w
for some suitablew
. If I was using MTL, I would usemapWriter
to achieve this, but there seems to be no analog for it here.Is this possible to define somehow, and if so, how would I do it?