I have an arrow which outputs a list of values (a b [c]) and another arrow which accepts a single value of that type (a c d). What I need basically is a way to chain them or uplift the second arrow to a [c] [d].
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You cannot do this with just
Your function is then simply:
Without
|
|||||||||
|
Arrow. You probably either needArrowApplyor some lifting function specific to whatever type of arrows you're using. – hammar Dec 2 '12 at 3:05