Bootstrap – Input Groups
In this Bootstrap Input Groups chapter explains about one more feature Bootstrap supports, the Input Groups. Input groups are extended Form Controls. Using input groups you can easily prepend and append…
In this Bootstrap Input Groups chapter explains about one more feature Bootstrap supports, the Input Groups. Input groups are extended Form Controls. Using input groups you can easily prepend and append…
In this Bootstrap Button dropdowns chapter will discuss about how to add dropdown menu to buttons using Bootstrap Button dropdowns classes. To add a dropdown to a button, simply wrap…
This topic is about Elixir - Enumerables. An enumerable is an object that may be enumerated. "Enumerated" means to count off the members of a set/collection/category one by one (usually…
This topic is about Elixir - Loops. Due to immutability, loops in Elixir (as in any functional programming language) are written differently from imperative languages. For example, in an imperative…
This topic is about Elixir - Recursion. Recursion is a method where the solution to a problem depends on the solutions to smaller instances of the same problem. Most computer…
This topic is about Elixir - Functions. A function is a set of statements organized together to perform a specific task. Functions in programming work mostly like function in Math.…
This topic is about Elixir - Aliases. In order to facilitate software reuse, Elixir provides three directives – alias, require and import. It also provides a macro called use which is summarized below…
This topic is about Elixir - Modules. In Elixir, we group several functions into modules. We have already used different modules in the previous chapters such as the String module,…
this topic is about Elixir - Maps. Keyword lists are a convenient way to address content stored in lists by key, but underneath, Elixir is still walking through the list.…
In this guide, we will discuss If statement in Erlang. The first decision making statement we will look at is the ‘if’ statement. The general form of this statement in…