ion
I’ve seen -> and <- used in Elixir books and articles, but I have not found a clear explanation to what they are called, and when they should be used.
Generator Example: for n <- 1..4, do: n * n
In an anonymous function, -> makes syntactical sense, but I don’t understand all of the use cases of <-
Sorry for the noob question
but I’m still learning Elixir ![]()
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)
peerreynders
Erlang And OTP in Action, p.42
2.3.4 Creating modules
p.66
2.9.1 List comprehension notation
So
for n <- 1..4, do: n * nreads:for “n” element of the range from one to four do “n” times “n”
ion
Thank you. This makes sense now!
logicmason
->is also used insidecaseandrescueclauses.silverdr
… and what does
mean?
Sanjibukai
As @logicmason said above (a long time ago) the right arrow (aka stabby arrow)
->is also used forcaseandcond(more here in the guide).You didn’t provide more details but I bet that in your case
something0is either acaseor acond. It might also be arescue(and even more rarely maybe areceiveor anafter).But in all of these cases (except
rescue) you’ll have ado(likecase something doorcond do), right?Consider the
doas giving “something” to the block as if it was an argument..So what’s happening in all of these use cases is actually a pattern-match between what’s given in and what’s on the left hand side of the arrow.
For the
caseit will be the value of the expression (it might be a function’s return or simply a variable or even a literal value). For thecondyou can consider that the literaltrueis given..So now you can pattern match what you want on the left of the arrow against what’s given in. In the case of a literal you can have a pinned variable on the left for example.
In any case you can consider this right arrow as a pattern-matching.
Now regarding the
_(underscore), it’s simply an equivalent of a wildcard (or anI don't care value) something that will always evaluate the pattern match as a positive match. For thecondthe equivalent istruewhich is used as the last clause as you can see on the guide.So now to answer your question simply,
could means that regardless of the value to what
something0is evaluated, execute (or evaluate or return)something1Hope it makes sense..
dkuku
Ill attach my question to this topic. I just refactored some code to use
withand I wrote it with equal signthen double checked the docs and it uses the left arrow
optimistic version works both ways - is there any difference here??
Eiji
@dkuku It’s really easy to understand it.
The best way is by practice, so let’s create an example code:
Now let’s use our
Examplemodule:If expression matches pattern then in both cases we have same results. More interesting is when match would fail. For match operator (
=)Elixirraises an error and in second case we got:error(result ofelseclause).Summary:
=and<-are not equal=it’s a match operator like in any other place in codea <- bis validElixircode which is often used in macros/special forms<-unlike=would not fail when there is no match - insteadelseif defined is used - otherwise returnsnilFinally to understand it better we should take a look at documentation. Both of them are not part of
Kernel, so firstly we should take a look atKernel.SpecialForms.Here are the links:
dkuku
As always a good response, thanks.