View Source IO.ANSI.Table.Spec.SortAttrs (IO ANSI Table v1.0.18)

Derives the sort attributes of a table.

Link to this section Summary

Functions

Derives the sort attributes of a table.

Link to this section Functions

Specs

Derives the sort attributes of a table.

Examples

iex> alias IO.ANSI.Table.Spec.SortAttrs
iex> alias IO.ANSI.Table.Spec
iex> spec = Spec.new([:c4, :c1, :c2], sort_specs: [desc: :c2])
iex> %Spec{sort_attrs: sort_attrs} = SortAttrs.derive_and_put(spec)
iex> sort_attrs
[nil, nil, :desc]