ysfylcn26

ysfylcn26

Hi all,
İ started to learn elixir so that i am new for functional programing. I wonder one thing. Elixir does immutable everything. But I try some examples.
def boxes(total) do
size_50 = div(total, 50)
total = rem(total, 50)
{“big: #{size_50} total: #{total}”}
end
I created named function and i get one input. But i can change total variable. This dont throw error because of immutable variables. Why?

Showing Posts 1 to 7

kokolegorille

kokolegorille

Hello and welcome,

You cannot really change the variable, but You can rebind it.

It’s an Elixir compromise, that You won’t find in Erlang.

Under the hood it’s doing total_0, total_1, total_2 etc.

Please don’t forget to wrap your code with ``` to make it more readable, as in markdown :slight_smile:

BTW It’s usually a good practice to avoid intermediate variables, and use pipe |> whenever You can.

BartOtten

BartOtten

dimitarvp

dimitarvp

You change the contents of the variable. The variable name is just an alias for the new contents.

ysfylcn26

ysfylcn26 OP

Thnak you. i will be more careful with ´´´ after now

kokolegorille

kokolegorille

It is backtick ```, not ´´´ :slight_smile:

ysfylcn26

ysfylcn26 OP

I really have to be more careful :slight_smile:

rvirding

rvirding

Creator of Erlang

Yes, I think the easiest way to understand is that an Elixir variable is just a reference to the data and not the data itself. C programmers can see it as a pointer to the data not the data itself. :wink: So when you do

x = {1, 2}
and then
x = {:a, :b}

you are first referring the variable x to the tuple {1, 2} and then referring x to another tuple {:a, ·b} but you have NOT modified the tuples themselves. This is where the data immutability comes in as you actually CANNOT modify the tuples, or any other data for that matter. So the {:a, :b} is always the tuple {:a, :b} for as long as it exists.

This is a problem that people coming from imperative languages often run into as it very much affects HOW you work with data.

— All posts loaded —

Where Next? Top

Trending in Questions Top

nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
kpanic
Hi everyone, I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding. I sta...
New
velrest
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
asweet-confluent
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
apz
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
mnkhod
So i have been using ash framework for a while and i love it. However currently the issue im having with ash framework is the error handl...
New

Other Trending Topics Top

GenericJam
Edit: 2026 May 15 - This post is archived. Mob is alive!! Main docs: mob v0.7.11 — Documentation A bit of explanation for the slightly c...
New
JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews