Paul Schoenfelder
Paul Schoenfelder
I'm definitely open to that! I probably won't have time for awhile, but PRs are absolutely welcome!
Looks like the problem here is that the pathfinding code is written around directed graphs (which is what this library focused on initially) - I'm working on rewriting the code...
Hey all, I have been swamped and not been able to revisit this in some time, but I'd like to get it addressed. If there is anyone interested in tackling...
You can ensure protocols are consolidated by adding `test/support` (or wherever) to `elixirc_paths` in `mix.exs`. Example: ```elixir defmodule MyApp.Project do def project do [name: :myapp, ... elixirc_paths: elixirc_paths(Mix.env)] end defp...
I haven't submitted it yet, hoping to by the end of the day today - I'll update here once I've done so.
I've submitted a PR [here](https://github.com/erlang/otp/pull/1316), but it's limited to better error reporting, unfortunately the 100 byte filename limit is a hard one due to the need to maintain compatibility with...
Just wanted to chime in and give my two cents on what aspects of this are of interest to at least one language implementation: For context, I'm working on an...
@RossTate Sure! C++ exceptions, or to be more specific, the zero-cost exception handling model specified by the Itanium ABI; add no runtime overhead when not used, but are relatively expensive...
> In particular, above I speak about stack conventions like finally clauses, and ask whether these should be always enforced or simply conventions. Yeah my take is that you definitely...
Any rationale? I really don’t see the benefit in doing so