Hacker News new | ask | show | jobs
by lpil 2223 days ago
All data is immutable on the BEAM with a few exceptions, so no mutation within actors.
1 comments

No, that's not true. Actors in elixir/erlang mutate their state through tail call recursion through the loop function.
I said data is immutable on the BEAM, actors can update their state.