This library is the successor to lfe-utils.
Convenience functions that can be included in a rebar deps declaration instead of reimplementing across multiple projects.
This project assumes that you have rebar installed somwhere in your
$PATH
.
This project depends upon the following, which installed to the deps
directory of this project when you run make deps
:
ltest is not included in the rebar.config file, in order to avoid the
circular dependency problem of rebar. If you wish to run the unit tests,
the make check
target will download and compile ltest to avoid the
issue with rebar.
In your rebar.config
file, update your deps
section to include
lutil
:
{deps, [
{lfe, ".*", {git, "git://github.com/rvirding/lfe.git"}},
{ltest, ".*", {git, "git://github.com/lfex/ltest.git"}},
{lutil, ".*", {git, "git://github.com/lfex/lutil.git"}}
]}
Usage is the same as any other Erlang or LFE library :-)
> (lutil-math:dot-product '(1 2 3) '(4 5 6))
32
> (lutil-type:add-tuples (tuple 1 2) (tuple 3 4))
#(1 2 3 4)
> (lutil-type:add-tuples (list (tuple 1 2) (tuple 3 4) (tuple 5 6)))
#(1 2 3 4 5 6)
> (lutil:uuid4 (tuple 'type '"list"))
"f790b655-f139-46d5-08e5-faf132bdd62a"
> (lutil:uuid4 (tuple 'type '"atom"))
8ecd6cc2-8580-4ab6-3fc1-8135ed9bb28c
> (lutil:uuid4 (tuple 'type '"binary"))
#B(51 49 53 56 102 52 53 54 45 50 51 55 56 45 52 51 56 54 45 50 57 56 ...)
> (lutil:uuid4)
#B(99 101 102 102 54 53 97 50 45 48 57 55 49 45 52 50 49 49 45 50 52 ...)