├── LICENSE ├── Makefile ├── README.md ├── doc └── index.html ├── examples ├── Makefile ├── bench.cpp ├── libf2html.cpp └── test.cpp ├── fbase.h ├── fcompare.cpp ├── fcompare.h ├── fgc.h ├── flambda.h ├── flist.cpp ├── flist.h ├── flist_defs.h ├── fmap.h ├── fmap_defs.h ├── fmaybe.h ├── fmaybe_defs.h ├── fseq.cpp ├── fseq.h ├── fset.h ├── fset_defs.h ├── fshow.cpp ├── fshow.h ├── fstring.cpp ├── fstring.h ├── fstring_defs.h ├── ftree.cpp ├── ftree.h ├── ftuple.h ├── ftuple_defs.h ├── fvalue.h ├── fvector.cpp ├── fvector.h ├── fvector_defs.h └── images ├── LibF_benchs1.png └── LibF_benchs2.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/README.md -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/doc/index.html -------------------------------------------------------------------------------- /examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/examples/Makefile -------------------------------------------------------------------------------- /examples/bench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/examples/bench.cpp -------------------------------------------------------------------------------- /examples/libf2html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/examples/libf2html.cpp -------------------------------------------------------------------------------- /examples/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/examples/test.cpp -------------------------------------------------------------------------------- /fbase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fbase.h -------------------------------------------------------------------------------- /fcompare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fcompare.cpp -------------------------------------------------------------------------------- /fcompare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fcompare.h -------------------------------------------------------------------------------- /fgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fgc.h -------------------------------------------------------------------------------- /flambda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/flambda.h -------------------------------------------------------------------------------- /flist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/flist.cpp -------------------------------------------------------------------------------- /flist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/flist.h -------------------------------------------------------------------------------- /flist_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/flist_defs.h -------------------------------------------------------------------------------- /fmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fmap.h -------------------------------------------------------------------------------- /fmap_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fmap_defs.h -------------------------------------------------------------------------------- /fmaybe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fmaybe.h -------------------------------------------------------------------------------- /fmaybe_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fmaybe_defs.h -------------------------------------------------------------------------------- /fseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fseq.cpp -------------------------------------------------------------------------------- /fseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fseq.h -------------------------------------------------------------------------------- /fset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fset.h -------------------------------------------------------------------------------- /fset_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fset_defs.h -------------------------------------------------------------------------------- /fshow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fshow.cpp -------------------------------------------------------------------------------- /fshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fshow.h -------------------------------------------------------------------------------- /fstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fstring.cpp -------------------------------------------------------------------------------- /fstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fstring.h -------------------------------------------------------------------------------- /fstring_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fstring_defs.h -------------------------------------------------------------------------------- /ftree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/ftree.cpp -------------------------------------------------------------------------------- /ftree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/ftree.h -------------------------------------------------------------------------------- /ftuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/ftuple.h -------------------------------------------------------------------------------- /ftuple_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/ftuple_defs.h -------------------------------------------------------------------------------- /fvalue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fvalue.h -------------------------------------------------------------------------------- /fvector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fvector.cpp -------------------------------------------------------------------------------- /fvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fvector.h -------------------------------------------------------------------------------- /fvector_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/fvector_defs.h -------------------------------------------------------------------------------- /images/LibF_benchs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/images/LibF_benchs1.png -------------------------------------------------------------------------------- /images/LibF_benchs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GJDuck/libf/HEAD/images/LibF_benchs2.png --------------------------------------------------------------------------------