tginiotis
11/21/2018, 3:53 PMA
.
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.