about summary refs log tree commit diff
path: root/users/wpcarro/assessments/semiprimes/server/lib/extras.ex
blob: f0c2ea4b9e2130512fd9a273e4cd108962b80ef9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
defmodule Extras do
  @moduledoc """
  Hosts utility functions intended to supplement the standard library.
  """

  @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