Tutorial by Topics: elixir

Elixir is a dynamic, functional language designed for building scalable and maintainable applications. Elixir leverages the Erlang VM, known for running low-latency, distributed and fault-tolerant systems, while also being successfully used in web development and the embedded software domain. ...
Note that the /rel folder may not be needed in your .gitignore file. This is generated if you are using a release management tool such as exrm
Polymorphism is the provision of a single interface to entities of different types. Basically, it allows different data types respond to the same function. So, the same function shapes for different data types to accomplish the same behavior. Elixir language has protocols to implement polymorphism w...
Let's try to implement the basic higher orders functions like map and reduce using Elixir

Page 1 of 1