ion

ion

Syntax Question: -> and <-

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 :sweat_smile: but I’m still learning Elixir :innocent:

Marked As Solved

peerreynders

peerreynders

Erlang And OTP in Action, p.42
2.3.4 Creating modules

The arrow → is there to separate the function head (the name and arguments)
from its body (what the function does).

p.66
2.9.1 List comprehension notation

You don’t have ∈ on your keyboard, so a left arrow ← is used to denote a generator;

So for n <- 1..4, do: n * n reads:

for “n” element of the range from one to four do “n” times “n”

10
Post #2

Also Liked

Eiji

Eiji

@dkuku It’s really easy to understand it.

The best way is by practice, so let’s create an example code:

defmodule Example do
  def sample(bool) do
    with true = bool do
      :ok
    else
      _ -> :error
    end
  end

  def sample2(bool) do
    with true <- bool do
      :ok
    else
      _ -> :error
    end
  end
end

Now let’s use our Example module:

iex> Example.sample(true)
:ok
iex> Example.sample(false)
** (MatchError) no match of right hand side value: false
    iex:3: Example.sample/1
iex> Example.sample2(true)
:ok
iex> Example.sample2(false)
:error

If expression matches pattern then in both cases we have same results. More interesting is when match would fail. For match operator (=) Elixir raises an error and in second case we got :error (result of else clause).

Summary:

  1. = and <- are not equal
  2. = it’s a match operator like in any other place in code
  3. a <- b is valid Elixir code which is often used in macros/special forms
  4. <- unlike = would not fail when there is no match - instead else if defined is used - otherwise returns nil

Finally 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 at Kernel.SpecialForms.

Here are the links:

  1. match operator
  2. with/1 special form
16
Post #8
Sanjibukai

Sanjibukai

As @logicmason said above (a long time ago) the right arrow (aka stabby arrow) -> is also used for case and cond (more here in the guide).

You didn’t provide more details but I bet that in your case something0 is either a case or a cond. It might also be a rescue (and even more rarely maybe a receive or an after).

But in all of these cases (except rescue) you’ll have a do (like case something do or cond do), right?

Consider the do as 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 case it will be the value of the expression (it might be a function’s return or simply a variable or even a literal value). For the cond you can consider that the literal true is 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 an I don't care value) something that will always evaluate the pattern match as a positive match. For the cond the equivalent is true which is used as the last clause as you can see on the guide.

So now to answer your question simply,

something0
_ ->
  something1

could means that regardless of the value to what something0 is evaluated, execute (or evaluate or return) something1

Hope it makes sense…

logicmason

logicmason

-> is also used inside case and rescue clauses.

silverdr

silverdr

… and what does

something0
_ ->
  something1

mean?

Where Next?

Popular in Questions Top

lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
sergio_101
I am VERY much an elixir newbie. I have taken one elixir course and one phoenix course on Udemy. During that course, I saw the instructor...
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
Kagamiiiii
Student &amp; New to elixir. Nice language. I want to convert a english character, e.g. “a”, which is stored in a variable, to it’s asci...
New
polypush135
As many of you may have realized by now (sorry for all the posts here) I’ve been working on a db problem where I’m trying to aggregate a ...
New
vertexbuffer
Hello, can anybody help here..? I have a list of players and I what to delete an element, but every for loop the list is reverting to ori...
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
ashish173
I am using Ecto timestamps with postgres, I can see the timestamps() use the :naive_dateime but for my use case I wanted to store the ti...
New
chrisalley
ExUnit now has describe blocks which is a welcome addition coming from RSpec. In the docs, it states that nested hierarchies of describe ...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New

Other popular topics Top

Qqwy
Update: How to use the Blogs &amp; Podcasts section You can post links to your blog posts or podcasts either in one of the Official Blog...
3268 119930 1237
New
Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
chrismccord
Phoenix 1.4.0 released Phoenix 1.4 is out! This release ships with exciting new features, most notably with HTTP2 support, improved deve...
688 30048 115
New
sergio
I couldn’t find any guides that worked well with Phoenix 1.6.0 and esbuild. I hope this helps people test the waters and eases you into t...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
chensan
I have a User schema with a :from_id field set to type :string: defmodule TweetBot.Repo.Migrations.CreateUsers do use Ecto.Migration ...
New
Patoshizzle
After calling mix ecto.create I get this error: 17:00:32.162 [error] GenServer #PID&lt;0.412.0&gt; terminating ** (Postgrex.Error) FATAL...
New
Qqwy
Original source of discussion: This topic on the Pragmatic Programmers' Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
lucidguppy
I have a super simple question about elixir - how would I take a file like this foo bar baz and output a new file that enumerates th...
New
siddhant3030
Hi, I have to write a raw query for one of my project. But till now I have used ecto queries and don’t have much experience writing raw ...
New

We're in Beta

About us Mission Statement