rmonad icon indicating copy to clipboard operation
rmonad copied to clipboard

Binding with `%>_%` into a nest misses a transitive edge

Open arendsee opened this issue 6 years ago • 0 comments

In

4 %>_% { . %>>% sqrt }

There should be a transitive edge between 4 and ., but there isn't.

Contrast the plot of the above expression with the plot of 4 %>>% { . %>>% sqrt }.

arendsee avatar Nov 09 '17 20:11 arendsee