diff icon indicating copy to clipboard operation
diff copied to clipboard

A diff library written in Elixir

Results 3 diff issues
Sort by recently updated
recently updated
newest added

I've just looked a bit codes in this github repo; there seems no myers_difference call. But I think [String.myers_difference/2](https://hexdocs.pm/elixir/String.html#myers_difference/2) could improve performance and simplicity. How's your opinion?

Examples to reproduce the issue: ``` elixir iex> Diff.diff [1,2,3,4,5], [] ** (Enum.OutOfBoundsError) out of bounds error (elixir) lib/enum.ex:722: Enum.fetch!/2 lib/diff.ex:94: anonymous fn/5 in Diff.longest_common_subsequence/4 (elixir) lib/enum.ex:1478: anonymous fn/3 in...

I have problems building this dep with Nix. It complains about the missing `()` in `mix.exs`. It seems this is fixed with the code on `master` at the moment, but...