elixir-pipes
elixir-pipes copied to clipboard
Macros for more flexible composition with the Elixir Pipe operator
Looks like main purpose of this extension is now served by [`with` keyword](http://elixir-lang.org/getting-started/mix-otp/docs-tests-and-with.html#with) introduced in Elixir 1.2. Does it deprecate this extension? Is it worth to put a notice about...
Thank you for this great library. I have one question: ``` elixir pipe_matching x, {:ok, x}, {:ok, source_dir} |> build |> tag(name, version) |> save(dest_dir) |> delete_image ``` leads to...
remove unnecessary inc/double function from that sample
Small fix updating the path of where `examples` should be.
This extensions reads like it is related to fmaps, monads or function composition. Would be great if you could mention those in the README, and how they are derived.