Y
Hacker News
new
|
ask
|
show
|
jobs
by
el_oni
943 days ago
You can write custom guards out of any built in function that can already be used in a guard.
Like defguard is_list_or_even_int(val) do is_list(val) or (is_integer(val) and val % 2 ==0) end