Working with Immutable Data
Learn about the concept of immutability in Elixir.
We'll cover the following...
Data in functional programming
Conventional languages use mutating shared values that require thread and lock mechanisms to work with concurrency and parallelism. In functional programming, all values created in the program are immutable. By default, each function will have a stable value. That means lock ...