gitextract_diaikeab/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── COPYING.md ├── HACKING.md ├── README.md ├── debian/ │ ├── .gitignore │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── lua-fun.docs │ ├── lua5.1.dh-lua.conf │ ├── patches/ │ │ └── series │ ├── rules │ ├── source/ │ │ └── format │ └── watch ├── doc/ │ ├── .gitignore │ ├── Makefile │ ├── _static/ │ │ └── .keep │ ├── _templates/ │ │ └── layout.html │ ├── about.rst │ ├── basic.rst │ ├── compositions.rst │ ├── conf.py │ ├── filtering.rst │ ├── generators.rst │ ├── getting_started.rst │ ├── index.rst │ ├── indexing.rst │ ├── intro.rst │ ├── operators.rst │ ├── reducing.rst │ ├── reference.rst │ ├── slicing.rst │ ├── transformations.rst │ └── under_the_hood.rst ├── fun-scm-1.rockspec ├── fun.lua ├── rpm/ │ └── lua-fun.spec └── tests/ ├── .gitignore ├── basic.lua ├── compositions.lua ├── filtering.lua ├── generators.lua ├── indexing.lua ├── operators.lua ├── reducing.lua ├── runtest ├── slicing.lua ├── stateful.lua └── transformations.lua