dbg_inspect icon indicating copy to clipboard operation
dbg_inspect copied to clipboard

Implementation of dbg! Rust-macro for Elixir

Results 2 dbg_inspect issues
Sort by recently updated
recently updated
newest added

I have at least one project in which I could not use this package because I have multiple names for production-like environments (there’s *reasons* for it, and I’m sort of...

Printing the original code will be better. ``` ./test/dbg_test.exs:135 list = [1, 2, 3] zero = 0 list |> Enum.map(&{&1, to_string(&1 * &1)}) |> Enum.into(%{}) |> Map.put(zero, to_string(zero)) #=> %{0...