Htam

A fork of the Math package.

The Math module adds many useful functions that extend Elixir's standard library.

Installation

The package can be installed by adding htam to your list of dependencies in mix.exs:

def deps do
  [
    {:htam, "~> 0.1.0"}
  ]
end

Require or import the Math library anywhere in your code you'd like:

    require Math

or

    import Math

(Importing allows usage of the <~> operator)