jx

Pattern matching with binding of functions to variables for Elixir


License
Apache-2.0

Documentation

Jx

Package Documentation

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

  • Searching for function values to bind to specially marked variables (prefixed with j) in match expressions such as "j" = jx.([106])

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]