├── .gitignore ├── LICENSE ├── README.md ├── _npm_baby_steps.txt ├── index.html ├── misc └── d_performance_feasability │ └── main.d ├── package.json ├── plugin ├── devilappfun.js └── parallel.js ├── rsrc_web ├── examples.js ├── img │ ├── jsperf_motivation.png │ ├── jsperf_safari.png │ ├── pic_alchemyequipment.gif │ ├── pic_castlekids.jpg │ ├── pic_chaining.png │ ├── pic_dryingthewalls.gif │ ├── pic_function.png │ ├── pic_mccreadygossamer.jpg │ ├── pic_naming.jpg │ ├── pic_no.png │ ├── pic_now_later.jpg │ ├── pic_oldcpu.jpg │ ├── pic_pipechair.jpg │ ├── pic_streams.jpg │ ├── pic_sun.jpg │ ├── pic_tim1bitadder.png │ ├── pic_toolbox.jpg │ ├── pic_underthehood.jpg │ └── pic_yes.png ├── opinel.js └── prettify │ ├── lang-apollo.js │ ├── lang-css.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-lua.js │ ├── lang-ml.js │ ├── lang-proto.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-yaml.js │ ├── prettify.css │ └── prettify.js ├── test.html ├── test.js ├── test └── test.js └── transfun.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/README.md -------------------------------------------------------------------------------- /_npm_baby_steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/_npm_baby_steps.txt -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/index.html -------------------------------------------------------------------------------- /misc/d_performance_feasability/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/misc/d_performance_feasability/main.d -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/package.json -------------------------------------------------------------------------------- /plugin/devilappfun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/plugin/devilappfun.js -------------------------------------------------------------------------------- /plugin/parallel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/plugin/parallel.js -------------------------------------------------------------------------------- /rsrc_web/examples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/examples.js -------------------------------------------------------------------------------- /rsrc_web/img/jsperf_motivation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/jsperf_motivation.png -------------------------------------------------------------------------------- /rsrc_web/img/jsperf_safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/jsperf_safari.png -------------------------------------------------------------------------------- /rsrc_web/img/pic_alchemyequipment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_alchemyequipment.gif -------------------------------------------------------------------------------- /rsrc_web/img/pic_castlekids.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_castlekids.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_chaining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_chaining.png -------------------------------------------------------------------------------- /rsrc_web/img/pic_dryingthewalls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_dryingthewalls.gif -------------------------------------------------------------------------------- /rsrc_web/img/pic_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_function.png -------------------------------------------------------------------------------- /rsrc_web/img/pic_mccreadygossamer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_mccreadygossamer.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_naming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_naming.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_no.png -------------------------------------------------------------------------------- /rsrc_web/img/pic_now_later.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_now_later.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_oldcpu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_oldcpu.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_pipechair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_pipechair.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_streams.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_streams.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_sun.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_tim1bitadder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_tim1bitadder.png -------------------------------------------------------------------------------- /rsrc_web/img/pic_toolbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_toolbox.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_underthehood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_underthehood.jpg -------------------------------------------------------------------------------- /rsrc_web/img/pic_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/img/pic_yes.png -------------------------------------------------------------------------------- /rsrc_web/opinel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/opinel.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-apollo.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-css.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-hs.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-lisp.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-lua.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-ml.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-proto.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-scala.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-sql.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-vb.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-wiki.js -------------------------------------------------------------------------------- /rsrc_web/prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/lang-yaml.js -------------------------------------------------------------------------------- /rsrc_web/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/prettify.css -------------------------------------------------------------------------------- /rsrc_web/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/rsrc_web/prettify/prettify.js -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/test.html -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/test.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/test/test.js -------------------------------------------------------------------------------- /transfun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glathoud/transfun/HEAD/transfun.js --------------------------------------------------------------------------------