Papillon6814
Condition of if
In Elixir, if executes a do…end block unless the given condition is false or nil as you know.
iex(1)> if true, do: IO.puts("ok")
ok
:ok
iex(2)> if 3, do: IO.puts("ok")
ok
:ok
iex(3)> if false, do: IO.puts("ok")
nil
iex(4)> if nil, do: IO.puts("ok")
nil
iex(5)> if "ok", do: IO.puts("ok")
ok
:ok
I’d like to know how to check whether the given argument for if is true. The only way I thought out for checking it is below.
if a == true, do: IO.puts("ok")
I feel a == true is somehow weird, are there any better ways to check true?
Marked As Solved
kip
ex_cldr Core Team
In Elixir, with the exception of guards, the principle is of truthyness meaning that for boolean comparisons, nil and false are considered false and everything else is true.
Meaning if you truly want to check for the atom true you will need to do a == true as you are doing. The values true, false and nil are just atoms in Elixir, nothing more.
5
Also Liked
Papillon6814
Thank you. I will do a == true in Elixir!
1
Popular in Questions
Hi there, I'm working through my first release with elixir/phoenix. I've built a release with distillery and found that it crashes when I...
New
can someone please explain to me how Enum.reduce works with maps
New
Good day to you all.
I have been struggling to get a query involving like and ilike to work.
Can anyone assist me on this, please?
pro...
New
Hi all,
Trying to get some more clarity over utc_datetime and naive_datetime for Ecto:
https://hexdocs.pm/ecto/Ecto.Schema.html#module-...
New
I have followed this StackOverflow post to install the specific version of Erlang.
And When I am running mix ecto.setup then getting fol...
New
Using vs code and installed ElixirLS: support and debugger.
And I got an error popped up on start up says
Failed to run ‘elixir’ comma...
New
Hey all, just started picking up Elixir last week and am writing a scraper as a learning project.
Baby step #1 is extracting the number ...
New
I’m currently trying to understand how to join three tables using Ecto. All the examples I’ve seen use 2, so maybe I’m just missing somet...
New
ExUnit now has describe blocks which is a welcome addition coming from RSpec. In the docs, it states that nested hierarchies of describe ...
New
To simplify some tasks at work, I wrote and published this package yesterday. It’s a simple macro that enables Access behaviour on struct...
New
Other popular topics
Hi everyone!
I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New
What is the proper way to load a module from a file in to IEX?
In the python world, doing something like this pretty standard:
from ....
New
In asking this question I am more interested about the expressiveness of the language itself and less concerned about the availability of...
New
I would like to know that is there any online source for learning Phoenix Framework for building E-Commerce Store? Any advantage on build...
New
What is the idiomatic way of matching for not nil in Elixir?
E.g.,
First way:
defp halt_if_not_signed_in(conn, signed_in_account) when...
New
I have followed this StackOverflow post to install the specific version of Erlang.
And When I am running mix ecto.setup then getting fol...
New
Hi folks,
Few months ago I have announced the proof-of-concept of the library to manipulate the browsers DOM objects directly from Elixi...
New
What is most correct way to open, read and parse JSON file with poison?
For example if we have example.json file in root of some projec...
New
I have a another noob question about loop. Since elixir is immutable, while loop is not directly possible.
total = 10
while total != 0
...
New
This post is an instruction guide to help you setup your Neovim for Elixir development from scratch. It includes general information on h...
New







