Sourceror.get_column

You're seeing just the function get_column, go back to Sourceror module for more information.
Link to this function

get_column(arg, default \\ 1)

View Source

Specs

get_column(Macro.t(), default :: integer() | nil) :: integer() | nil

Returns the column of a node. If none is found, the default value is returned(defaults to 1).

A default of nil may also be provided if the column number is meant to be coalesced with a value that is not known upfront.

iex> Sourceror.get_column({:foo, [column: 5], []})
5

iex> Sourceror.get_column({:foo, [], []}, 3)
3