arendsee / rmonad

Pipelines you can compute on
70 stars 0 forks source link

Chained `%__%` operators lose nodes #19

Open arendsee opened 5 years ago

arendsee commented 5 years ago

In the expression

> "a" %__% "b" %__% "c" %>% get_value()
[[1]]
[1] "a"
[[2]]
[1] "c"

The second node in the chain is missing. For longer chains, all internal nodes are missing.