Jx

PackageDocumentation

Jx is a library for Elixir that brings binding of functions to variables to pattern matching. Its high-level features are:

Installation

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

def deps do
  [
    {:jx, "~> 0.5.1"}
  ]
end

Examples

iex> require Jx; import Jx
iex> j [[2, 0, a, b], [1, a, b]] = [jx.(2023), jx.(123)]
#Jx<a=2, b=3, jx=&Integer.digits/1>
iex> jx.(a * 10 + b)
[2, 3]