Elixir is an open-source, dynamic, compiled, general purpose functional programming language.
New to Elixir from Ruby and I'm trying to print out a map's array values using the following code: map-script.…
elixirHow to do the similar conditional one-line check in Elixir? if (x > 0) ? x : nil Is this the only equivalent …
elixir ternary-operatorElixir's documentation states that In addition to the Elixir file extension .ex, Elixir also supports .exs files for scripting. Elixir …
elixirI'm going through the Programming Phoenix book and I am wondering what the difference between def and defp is. There …
elixir phoenix-frameworkI have a keyword list of Ecto changeset errors I'd like to convert to a map so that the Poison …
json elixirHow do you create a unique index on two columns in Ecto, which would correspond to this: CREATE TABLE someTable ( …
elixir ectoHow can I calculate a number with an exponent in Elixir? For example, 23 would return 8.
elixirI've just started using Elixir, and have started a Phoenix project, which I enjoy a lot. Now by having rails …
elixirUsually mix.test cleans the test database, but it is not working. It may be because I was playing around …
testing elixir phoenix-framework ectoHow to make a field unique in ecto? I thought it's the same as the active record in Ruby, but …
elixir ecto