How to inspect without trimming in Elixir
If you want to display the entirety of a long list or map or AST, use:
IO.inspect(thing_i_want_to_inspect, limit: :infinity)
If you want to display the entirety of a long list or map or AST, use:
IO.inspect(thing_i_want_to_inspect, limit: :infinity)