PassiveSupport.Range.first

You're seeing just the function first, go back to PassiveSupport.Range module for more information.
Link to this function

first(arg)

(since 0.1.0)

Specs

first(Range.t()) :: integer()

Returns the first number of the range

Examples

iex> first(0..5)
0
iex> first(5..0)
5