mguimas
mguimas
**Beware**: the book in its current edition refers to a decrease in throughput as concurrency raises ... "The third parameter to Profiler.run specifies the concurrency level. Here, you’re starting 100...
I don't think people will get the impression that Elixir programs are written in a single file, as no other serious language does that, and quickly, they will learn it...
@jeremyjh I believe that if the user did not provide `:ignore_warnings` in `mix.exs` is because they simply accept the default or don't care. Document what is the default value of...
Yes it lists. In the past I have run Dialyzer from child projects and it worked.
Ok, I am going to try `1.0.0-rc4`. I'll come back here as soon as possible.
I upgraded to `1.0.0-rc.4`, and got the same error when running `mix dialyzer` from the child project's directory. Running `mix dialyzer` at the umbrella root dir works, then running `mix...
Yes, I saw the message `In an Umbrella child, not checking PLT...` when running from inside the child project, and when running from the umbrella project dir I saw `Checking...
ok, then let the issue stay open for a PR. Let me see if I can live with it, otherwise I may submit a PR. Thanks.
@josevalim Instead of this ``` @doc "foo" @doc bar: 1 @doc #=> [{2, bar: 1}, {1, "foo"}] ``` could you consider this ``` @doc "foo" @doc bar: 1 @doc #=>...
@josevalim I believe that a good data structure is one that makes it is easy to use `Enum` to traverse the information associated with the `@doc` entries. So in the...