Elixir Language Modules

Help us to keep this website almost Ad Free! It takes only 10 seconds of your time:
> Step 1: Go view our video on YouTube: EF Core Bulk Insert
> Step 2: And Like the video. BONUS: You can also share it!

Remarks

Module Names

In Elixir, module names such as IO or String are just atoms under the hood and are converted to the form :"Elixir.ModuleName" at compile time.

iex(1)> is_atom(IO)
true
iex(2)> IO == :"Elixir.IO"
true


Got any Elixir Language Question?