Tag: elixir
How To Run Pure Erlang Functions In Elixir
elixir, functional programming
TL;DR In the previous post, we presented how to run modules and functions in runtime. Elixir is integrated with Erlang. Today we present how to run pure Erlang functions from…
How Elixir Runs Modules And Functions In Elixir Runtime
elixir, functional programming
TL;DR In the previous post, we presented the most powerful Elixir Feature, Macros. Today we move on to modules and functions in runtime. This post is part of the functional…
What Are Elixir Macros, The Most Powerful Elixir Feature
elixir, functional programming
TL;DR In the previous post, we presented Elixir operators, where many of them are Elixir Functions. Today we present the most powerful Elixir Feature, Macros. This post is part of the…
In Elixir, Many Operators Are Functions
elixir, functional programming
TL;DR In the previous post, we presented I/O Lists, the data type for creating data streams for IO devices. Today we move on Elixir operators, where many of them are…
I/O Devices Communication In Elixir
elixir, functional programming
TL;DR In the previous post, we presented what Elixir offers in handling Dates and Time. Today we talk about I/O Lists, the data type for creating data streams for IO…
How To Handle Date And Time In Elixir?
elixir, functional programming
TL;DR In the previous post, we present higher-level types: Range, Keyword Lists, and MapSet. Let’s see what Elixir offers in handling Dates and Time. This post is part of the…
When To Use Elixir Range, Keyword Lists And MapSet
elixir, functional programming
TL;DR In the previous post, we introduced the last two Elixir Basic Types, Reference, And Pid. Today we present higher-level types: Range, Keyword Lists, and MapSet. This post is part…
What Is Elixir Closure
elixir, functional programming
TL;DR In the previous post, we introduced Elixir First Class functions, Lambdas. Let’s see what Elixir Closure is. This post is part of the functional language series, and it is…