Hi. I'm relatively new to Arrow and proper functio...
# arrow
n
Hi. I'm relatively new to Arrow and proper functional programming, so i was hoping i could get a bit of assistance as to which data type i should use: I have a Task (which is effectively just a fancy function) that takes Input and Dependency and produces Output. From the documentation i gather that
Kleisli
might be a good fit, but the tricky part is that i need to be able to provide Input when instatiating the Task, and Dependency when it is being executed. Is there some data type better suited for that purpose? Or is there a way to curry Kleisli? Or maybe a way to combine it with some other data type to achieve that goal?