...

/

Working with Immutable Data

Working with Immutable Data

Learn about the concept of immutability in Elixir.

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 ...