Eksperimental
Eksperimental
I noticed that reduce is equivalent to foldr, which is opposite to what Elixir does. See https://github.com/Qqwy/elixir-arrays/pull/23 for more info
I think it will improve the user experience to include the function signature for every function, type, guard, callback, etc in the side bar. This could be added to the...
Closes https://github.com/elixir-lang/ex_doc/issues/1411 https://github.com/elixir-lang/ex_doc/issues/1294 PR Originally published in #1412 #1564
There is not such a `close/0` function.
```elixir iex(10)> Earmark.as_ast " anything that follows the comment is lost " {:ok, [comment: [" Replace with better image "]], []} iex(11)> Earmark.as_ast " this is not lost" {:ok, [...
Two semantically equal expressions, but the second one fails. ```elixir iex(1)> string = """ ...(1)> ...(1)> 1 & 2 ...(1)> 1 > 2 ...(1)> ...(1)> ...(1)> """ iex(2)> Earmark.as_ast(string) {:ok,...
First take on #66, let's see what Netlify finds
Speaking of links, one things that I have had on my todo list is to change any links that point to `www.erlang.org` to instead point to `/` if they are...
I have ```elixir @spec child_pid(term) :: pid | nil def child_pid(term) when not is_pid(term) do pid({:child, term}) end def child_pid(pid) do case Supervisor.which_children(pid) do [{_id, child_pid, _type, _modules}] -> if...
This is a reduced case of The clause on line X cannot be reached, when calling `with/1` ```elixir defmodule Unreacheable do @spec foo(term) :: pos_integer() def foo(bar) do with _value...