6af5e4b82e
I'll use as the host for utility functions needed to extend the stdlib.
18 lines
278 B
Elixir
18 lines
278 B
Elixir
defmodule Extras do
|
|
@doc """
|
|
Return an ascending range starting at `a` and ending at `b` (exclusive).
|
|
|
|
## Examples
|
|
|
|
iex> Extras.range(2, 5)
|
|
[2, 3, 4]
|
|
|
|
"""
|
|
def range(a, b) do
|
|
if b <= a do
|
|
[]
|
|
else
|
|
[a] ++ range(a + 1, b)
|
|
end
|
|
end
|
|
end
|