arendsee / rmonad

Pipelines you can compute on
70 stars 0 forks source link

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

Open arendsee opened 6 years ago

arendsee commented 6 years ago

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 }.