├── .github └── workflows │ └── cicd.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── include └── mnesia-macros.lfe ├── priv ├── html │ └── docs-redirect.html └── images │ ├── lutil-x250.png │ ├── lutil-x500.png │ └── lutil-x700.png ├── rebar.config ├── src ├── lcycle.erl ├── lutil-atom.lfe ├── lutil-bin.lfe ├── lutil-file.lfe ├── lutil-list.lfe ├── lutil-math.lfe ├── lutil-net.lfe ├── lutil-odict.lfe ├── lutil-plist.lfe ├── lutil-rec.lfe ├── lutil-text.lfe ├── lutil-tuple.lfe ├── lutil-vsn.lfe ├── lutil.app.src └── lutil.lfe └── test ├── lutil-atom-tests.lfe ├── lutil-bin-tests.lfe ├── lutil-file-tests.lfe ├── lutil-list-tests.lfe ├── lutil-math-tests.lfe ├── lutil-rec-tests.lfe ├── lutil-tests.lfe ├── lutil-text-tests.lfe └── lutil-tuple-tests.lfe /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/README.md -------------------------------------------------------------------------------- /include/mnesia-macros.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/include/mnesia-macros.lfe -------------------------------------------------------------------------------- /priv/html/docs-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/priv/html/docs-redirect.html -------------------------------------------------------------------------------- /priv/images/lutil-x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/priv/images/lutil-x250.png -------------------------------------------------------------------------------- /priv/images/lutil-x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/priv/images/lutil-x500.png -------------------------------------------------------------------------------- /priv/images/lutil-x700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/priv/images/lutil-x700.png -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/rebar.config -------------------------------------------------------------------------------- /src/lcycle.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lcycle.erl -------------------------------------------------------------------------------- /src/lutil-atom.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-atom.lfe -------------------------------------------------------------------------------- /src/lutil-bin.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-bin.lfe -------------------------------------------------------------------------------- /src/lutil-file.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-file.lfe -------------------------------------------------------------------------------- /src/lutil-list.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-list.lfe -------------------------------------------------------------------------------- /src/lutil-math.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-math.lfe -------------------------------------------------------------------------------- /src/lutil-net.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-net.lfe -------------------------------------------------------------------------------- /src/lutil-odict.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-odict.lfe -------------------------------------------------------------------------------- /src/lutil-plist.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-plist.lfe -------------------------------------------------------------------------------- /src/lutil-rec.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-rec.lfe -------------------------------------------------------------------------------- /src/lutil-text.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-text.lfe -------------------------------------------------------------------------------- /src/lutil-tuple.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-tuple.lfe -------------------------------------------------------------------------------- /src/lutil-vsn.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil-vsn.lfe -------------------------------------------------------------------------------- /src/lutil.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil.app.src -------------------------------------------------------------------------------- /src/lutil.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/src/lutil.lfe -------------------------------------------------------------------------------- /test/lutil-atom-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-atom-tests.lfe -------------------------------------------------------------------------------- /test/lutil-bin-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-bin-tests.lfe -------------------------------------------------------------------------------- /test/lutil-file-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-file-tests.lfe -------------------------------------------------------------------------------- /test/lutil-list-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-list-tests.lfe -------------------------------------------------------------------------------- /test/lutil-math-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-math-tests.lfe -------------------------------------------------------------------------------- /test/lutil-rec-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-rec-tests.lfe -------------------------------------------------------------------------------- /test/lutil-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-tests.lfe -------------------------------------------------------------------------------- /test/lutil-text-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-text-tests.lfe -------------------------------------------------------------------------------- /test/lutil-tuple-tests.lfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lfex/lutil/HEAD/test/lutil-tuple-tests.lfe --------------------------------------------------------------------------------