aerosol / Tabula

:u7533: Pretty printer for maps/structs collections (Elixir)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support keyword lists

wojtekmach opened this issue · comments

Basically supporting this:

Tabula.print_table([[foo: 1, bar: 2], [foo: 3, bar: 4]])

The advantage of being able to use keywords is that they keep order. Currently to have it in particular order on a list of maps, we'd need to repeat field names: only: [:foo, :bar]

commented