alright, so to sum up what I had in mind :smile: (...
# arrow
t
alright, so to sum up what I had in mind 😄 (I will check later if this can somehow be achieved with the library): there is a value of type
A
. I have functions of types:
A -> B
,
A -> C
,
A -> D
I want to do this:
A -> (B, C, D)
A
is a List and the functions are of the
fold
variety. So they iterate through the list. It would be good that those functions would be called each in sequence during the iteration of the list when a next item from the list is taken, i.e. the folds would be interleaved, so the processing would be done in a one-pass.