[RFC] Make the receiver of the piped calls (|>) always the first argument #314
Replies: 4 comments 1 reply
-
In Mint it's the last mostly because of partial application:
So basically the pipe is: Did a little research what other languages do: ReasonML: They have two operators
Elm: It's the last and they have two
PureScript It's the last.
F#: It's the last.
Elixir: It's the first.
Haskell: It's the last.
So this is basically function composition https://en.wikipedia.org/wiki/Function_composition_(computer_science) What I was thinking on making it easier to use is:
I'm probably somewhat biased because I only used Elm before and there it's the last. Let me know (anyone) your ideas and preference :) |
Beta Was this translation helpful? Give feedback.
-
I guess a better approach would be to introduce a second operator |
Beta Was this translation helpful? Give feedback.
-
Piping as it exists in mint, elixir, elm, haskell, et all is not function composition rather application. Haskell, elm, reason, purescript, F# are all MLs, and have ML style syntax and term reduction. Elixir is much different. Elixir is not an ML, does not perform term reduction like an ML, and its pipe operator is implemented as an AST rearranging Macro: https://github.com/elixir-lang/elixir/blob/v1.11.3/lib/elixir/lib/kernel.ex#L3665 Function composition on the other hand is where you take two functions, we'll call them an outer and an inner, and produce a new function that when given an argument first applies it to the outter function, then applies the result of that to the inner function. In elm there are two operators for this Their type signatures look like this:
Why bring this up? Thoughts on ergonomics: Thoughts on
but you could also:
It's lovely to work with. |
Beta Was this translation helpful? Give feedback.
-
Implemented in #571 🎉 |
Beta Was this translation helpful? Give feedback.
-
At the moment it's being passed as the last one.
Passing it as the first argument would IMO give the following benefits:
Array.any([1, 2, 3], (number : Number) : Bool { number % 2 == 0 })
Beta Was this translation helpful? Give feedback.
All reactions