LauraBeatris
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?
Trending in Questions
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
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
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
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
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
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #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
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
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!
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:
ifandcasecan be used on the right hand side of=in Elixir, but not in C. Here’s an example:In C that wouldn’t work since
ifreturns 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
To add on what the others have already said:
Expressions that have “nothing” to return usually return
nilor sometimes:ok. An example is for instanceif false do ... end(which returnsnilbecause there is noelse-block) andIO.puts/1(which returns:ok).dimitarvp
Then it implicitly returns
nil(which is actually a syntactic sugar for the atom:nil, same astrueandfalseare syntactic sugar for:trueand:false). Try this:And then invoke
Nothing.nothing()iniex. You’ll getnil.kokolegorille
Then You call it a method
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