Provides OK-piping (similar to libraries like ok) and adds the ability to pipe into any argument position (similar to magritte) of the following function (or nested function). By inserting ... where you would like the value to be inserted, Arrows will override where it is placed.
I see that the main difference between this and Magritte is that it do not have my limitations. Actually I have intentionally added these limitations to avoid things like:
foo
|> bar(fn a ->
a
|> baz(2137, ...) # what value should be inserted there?
end)
Also, when you want to use ... twice within single pipe there is question whether there should be 2 separate parent pipes or single one. Aka whether this code:
:rand.uniform()
|> Kernel.==(..., ...)
Should always return true?
I probably should have describe reasoning better in Magritte documentation.