LauraBeatris

LauraBeatris

How does implict return work in functions?

I learned that Elixir has an implicit return in functions, so we don’t need to use the return keyword in order to return a value if it’s the last one of the block.

  def create_deck do
    ["Pikachu", "Bulbasaur", "Piplup"] # Will return right away
  end

But how does that work? And if the function has nothing to return?

Marked As Solved

bglusman

bglusman

Not only does it have implicit return, there is no alternative, no return keyword in Elixir.

Functions in elixir (and erlang) always return some value. That value can be simply nil or :ok or whatever the output of the last statement executed in the function, but it will have a return value. If you only care about the side effects of calling the function, you may ignore its return value at the call site.

Note that if, case and cond all return the last value from their executed path as well.

The concept of referential transparency has some relevance here; though elixir doesn’t have strict referential transparency because of side effects, when there’s no explicit or implicit message passing to other processes or IO, I believe it does. Just thought worth mentioning, you asked “how does that work”, and depending on what sense you meant that in, there are a lot of answers, but it works great!

Also Liked

jtsummers

jtsummers

This is a consequence of Elixir (like Erlang) being expression-oriented, not statement oriented. Nearly everything in the language is an expression which evaluates to a value. This is in contrast with statement-oriented languages like C, Java, and others.

This has a few implications:

if and case can be used on the right hand side of = in Elixir, but not in C. Here’s an example:

a = if 1 == 2 do
      "huh"
    else
      "expected"
    end

In C that wouldn’t work since if returns nothing, you’d need to use the ternary expression to achieve a similar result. That choice of term is important. In every language (that I know of) expressions and statements are distinct.

Qqwy

Qqwy

TypeCheck Core Team

To add on what the others have already said:

Expressions that have “nothing” to return usually return nil or sometimes :ok. An example is for instance if false do ... end (which returns nil because there is no else-block) and IO.puts/1 (which returns :ok).

dimitarvp

dimitarvp

Then it implicitly returns nil (which is actually a syntactic sugar for the atom :nil, same as true and false are syntactic sugar for :true and :false). Try this:

defmodule Nothing do
  def nothing()
  end
end

And then invoke Nothing.nothing() in iex. You’ll get nil.

Last Post!

kokolegorille

kokolegorille

Then You call it a method :slight_smile:

It’s all about function composition. If it returns nothing, it is most likely a procedure, then it’s not possible to compose with it.

As simple as it is, a function should look like this, and pure function always returns the same output for the same input. You can compose with the powerful |>

Input → Output |> Input → Output |> Input → Output

And coming from Typescript, You will see it’s important to have clear input and output types. Functions are like interfaces.

This video helped me to switch from OOP to FP, because it’s better not to compare with what You already know. In fact, You need to unlearn :slight_smile:

Where Next?

Popular in Questions Top

Qqwy
Original source of discussion: This topic on the Pragmatic Programmers’ Functional Web Development with Elixir, OTP, and Phoenix forum. ...
New
New
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
Lily
In templates/appointment/index.html.eex: <%= for appointment <- @appointments do %> <tr> <td><%= appoi...
New
fireproofsocks
Forgive me if this is obvious, but how does one delete a database record WITHOUT selecting it first? Ecto.Repo — Ecto v3.14.0 has exampl...
New
dblack
I’ve got an issue with an app and I’ve no idea of how to troubleshoot it. I’m hoping someone here might have seen something similar. I p...
New
romenigld
I am trying to run a deploy with docker and I successfully runned with this command: docker build -t romenigld/blog-prod . but when I t...
New

Other popular topics Top

Qqwy
Update: How to use the Blogs & Podcasts section You can post links to your blog posts or podcasts either in one of the Official Blog...
3271 130579 1222
New
dokuzbir
I want to highlight html closing tags when i click a html tag. That works in .html files but doesnt work for html.eex templates. How can...
New
Darmani72
If I have a post route which an argument: post /my_post_route/:my_param1, MyController.my_post_handler How would get the post params ...
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 31525 112
New
saif
Hello everyone, Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New
SoCreat
i’m a new one to elixir which editor can i use vs code? or atom? Thanks! :smiley:
New

We're in Beta

About us Mission Statement