theodore
Noob question. But I was just wondering, is there any advantage to pattern matching a struct on the left hand side vs right hand side?
For e.g
defmodule Test do
defstruct name: nil
def fun1(x = %Test{name: name}) do
IO.inspect(name)
end
def fun2(%Test{name: name} = x) do
IO.inspect(name)
end
end
It seems like both are equivalent, but the style of “struct on left hand side” is more common.
Here’s some other instances of what I mean
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
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
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
voughtdq
AFAIK It’s just a stylistic choice.
kip
You are right, they are functionally equivalent.
I tend to use the left hand side because when I’m scanning code, its the pattern match I want to focus on first. The binding is the second consideration - especially when there are multiple function heads matching on different constructs.
codeanpeace
Another reason why it’s likely more common is that it keeps things consistent.
When pattern matching outside a function head, the variable is always on the right of the
=match operator since the other way around is for variable assignmentadamu
This is the best reason I think
More specifically, the variables on the left side get bound (unless you use the pin operator to indicate you want to use an existing variable) based on the data on the right. In a function head, the variables on both sides are bound based on the argument to the function.
al2o3cr
+1 to this.
One other consideration: the
x = %Test{name: name}shape looks similar to how other languages declare default arguments, versus the struct-on-the-left one which always means “pattern-match”.derek-zhou
Most Erlang code I’ve seen use the right hand side though. Pattern matching in the function haed has 2 purposes:
I guess Erlang and Elixir just pick different style convention out of the emphasizing which of the purposes are more important.
sodapopcan
I think part of what makes it make sense in Erlang is that it doesn’t have re-binding. I feel like it would almost make more sense in Elixir if you had to use a pin to make if you want to put it on the left:
def foo(^user = %User{})since it’s sorta like, “this already has a value”. To be clear, I’m not suggesting that’s how I think it should actually be.rvirding
Just to be different I prefer in Erlang to use the left hand side. To me it looks more like a pattern match which is what I am doing.