Elixir 1.5 released
github.com
Elixir 1.5 released
1–10 of 167 posts
Re: Elixir 1.5 released
#2Re: Elixir 1.5 released
#3"Using () to mean nil is deprecated" <- interesting.
Re: Elixir 1.5 released
#4Re: Elixir 1.5 released
#5We have published a draft version of the announcement since the release notes are not super helpful for those unfamiliar with Elixir. Is it possible to update the link to the official announcement? Thank you!
EDIT: We are done with the changes on the draft. We've added asciicinema snippets to show some features, improved the section on Calendar changes and also mentioned the compilation time improvements (expect at least 10% faster compilation).
Re: Elixir 1.5 released
#6Re: Elixir 1.5 released
#7"Using () to mean nil is deprecated" <- interesting.
I'm just starting to use elixir and I'm curious, when would one use `()` in place of `nil`?
Re: Elixir 1.5 released
#8[ExUnit] Show code snippet from test source file in case of test errors
ExUnit backtraces have historically been a bit hard to read sometimes IMHO.
Re: Elixir 1.5 released
#9Re: Elixir 1.5 released
#10"Using () to mean nil is deprecated" <- interesting.
I'm just starting to use elixir and I'm curious, when would one use `()` in place of `nil`?
for instance if empty list is truthy, this pseudocode won't terminate if tail is defined to always be a (possibly empty) list:
while seq:
head, seq = seq.head_tail()
f(head)