Sourceror.get_column
You're seeing just the function
get_column
, go back to Sourceror module for more information.
Specs
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