sebsel
So I have looked for this topic and found similar ones but not actually this one. Forgive me if I missed it.
While I really love Elixirs pipelines, I see myself writing this pattern from time to time:
def some_function(start) do
result =
start
|> Enum.map(&do_something/1)
|> Enum.filter(&but_without_these/1)
{:ok, result}
end
For this pattern, people seem to have come up with operators that do things with second or last arguments (I found one of those discussions). I’m not really interested in that, I want to make another point.
In the above pattern, I start reading about a result, then I see start, and then the actions that lead to start. Your eyes notice the pipeline quite fast, you see what happens, but especially when the action after the pipeline is more complicated, you start asking yourself: wait, what did they call the result of this pipeline? To find out, you have to go all the way up to read the variable name.
Put in another way: this way of writing messes with the ordering in which things are happening. First, the start is evaluated, then the pipeline is run, and only after that the match is completed which gives result a value.
I think it would be nice to be able to write it like this:
def some_function(start) do
start
|> Enum.map(&do_something/1)
|> Enum.filter(&but_without_these/1)
>>> result
{:ok, result}
end
This removes some indentation and reads nicely in order of what happens when. It might even stop the questions for |2>? You can just start a new pipeline after the first one with this variable where-ever you want.
Oh, and it’s a pattern match, so it’s quite powerful, as you know.
def some_function(start) do
start
|> Enum.map(&do_something/1)
|> Enum.filter(&but_without_these/1)
>>> [first | _]
Enum.zip(start, first)
|> Enum.reduce(&more_transforms/1)
>>> result
{:ok, result}
end
Note: I used >>> here because it’s one of the available custom operators, but I think => would be prettier (but probably taken) or <| (but that’s not available). Here’s a very naive macro to make it work:
defmacro left >>> right do
{:=, [], [right, left]}
end
Again, if this has been proposed too many times, please pardon the intrusion ![]()
Trending in Discussions
Other Trending Topics
Chat & Discussions>Discussions
Latest on Elixir Forum
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 10- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
OvermindDL1
There are all kinds of useful libraries and patterns, but if you want to stick with stock Elixir then I would do (and do) this:
I use that
|> case do result -> ... endpattern a lot. I know that not everyone likes it but I find it significantly more readable then misplaced variable definitions. Now if only we had proper monad’y do blocks without a library. ^.^;axelson
If we’re talking about the specific problem of wrapping in an
:ok/:errortuple I actually have a little helper that I find quite useful in my code.Using that changes the sample code to just:
Of course this is ignoring @sebsel’s larger point about defining new bindings at the end of pipelines. For that I would think that stylistically that might mean that your pipeline/function is too long and might benefit by moving the whole pipeline into a new function. Of course the correct approach depends on the concrete problem at hand.
OvermindDL1
For non-kernel things I use the Exceptional library most often, so with it then it would be:
But the
caseway is useful for ‘generic’ handling of the value without needing to make a new function (which you should always do, but I generally don’t if it’s only a line or two in size and just use the case instead).EDIT: For note,
to_tagged_status/1is a lot more than just an&{:ok, &1}.()wrapper, it returns either an:okor:errortuple depending on the value. If the value is an exception then it wraps it’s exception message in the :error tuple. If it’s already an error or ok tuple then it passes it through unchanged.I quite like the style of returning ok/error tuples, raw ok values, or exceptions. It is quite useful I’ve found.
sebsel
I realize I am really just asking for a “reversed match operator” (so it should contain a
=), and this is it’s primary use-case, but there could be others.The downside to such an operator would be that it’s yet another thing to learn, and that the error ‘no match of right hand value’ becomes cryptic (for it’s now the left hand value).
I was aware that there are other solutions, but I like piping into a case for this! It gives a nice reminder that if you make a specific match, you should add a branch for when it does not match.
Yeah, I could have made my example harder, because that was not my point. I would like to actually see the tuple in the function tho, that reads faster
kelvinst
I created this pull-request to a lib I have: Creating match macro by kelvinst · Pull Request #1 · kelvinst/plumbing · GitHub
Basically introducing a
matchmacro, that you could use like:I tried the
|=operator, but elixir syntactic parser does not allow it. And at the end, I like the “functiony” look ofmatchsebsel
Oh, nice. There is already a
match?(a, b), which returns a boolean, but that one also matches right to left, which can be confusing.pera
Cool, I also use it a lot and was wondering if it was considered a “bad” (as in unreadable) style.
michalmuskala
Some, including me, do consider it rather unreadable
. I’d much rather see:
or even
lud
But the
case dodoes not define aresultvariable usable afterwards. It is not equivalent to the proposed syntax, no ?pera
Yes, @sebsel 's reversed match operator
|=is semantically different than piping acase do, but they are similar in some situations.The “problem” is that sometimes I need to further process some internal element, like: