What should I use if I want to have something like
[a->b] -> a -> [b]
basically I have a list of functions, all take in a value a
and returns b
. I want to apply all of them to one a
and get the results [b]
.
Which one should I use?
Thanks