PassiveSupport.Range.next_page

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

next_page(arg)

(since 0.1.0)

Specs

next_page(Range.t()) :: Range.t()

Returns a new range that immediately follows the range provided, with an equivalent size

Examples

iex> next_page(1..10)
11..20
iex> next_page(10..1)
0..-9