├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── example ├── example.md ├── multi_variable.dart └── single_variable.dart ├── lib ├── function_tree.dart └── src │ ├── base.dart │ ├── branches.dart │ ├── constant_check.dart │ ├── defs.dart │ ├── derivatives.dart │ ├── extensions.dart │ ├── forks.dart │ ├── helpers.dart │ ├── interpreter.dart │ ├── leaves.dart │ └── trees.dart ├── misc ├── .DS_Store ├── generate_docs.dart ├── generate_docs.md ├── readme │ └── readme_template.md └── wiki │ ├── in │ ├── about.md │ ├── home.md │ ├── mvf.md │ └── svf.md │ └── out │ ├── about.md │ ├── home.md │ ├── logo.png │ ├── mvf.md │ └── svf.md ├── pubspec.yaml ├── test ├── derivatives.dart ├── interpret.dart ├── multi.dart ├── partials.dart ├── single.dart ├── time.dart └── two-parameter-functions.dart └── tool └── popmark.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/README.md -------------------------------------------------------------------------------- /example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/example/example.md -------------------------------------------------------------------------------- /example/multi_variable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/example/multi_variable.dart -------------------------------------------------------------------------------- /example/single_variable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/example/single_variable.dart -------------------------------------------------------------------------------- /lib/function_tree.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/function_tree.dart -------------------------------------------------------------------------------- /lib/src/base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/base.dart -------------------------------------------------------------------------------- /lib/src/branches.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/branches.dart -------------------------------------------------------------------------------- /lib/src/constant_check.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/constant_check.dart -------------------------------------------------------------------------------- /lib/src/defs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/defs.dart -------------------------------------------------------------------------------- /lib/src/derivatives.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/derivatives.dart -------------------------------------------------------------------------------- /lib/src/extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/extensions.dart -------------------------------------------------------------------------------- /lib/src/forks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/forks.dart -------------------------------------------------------------------------------- /lib/src/helpers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/helpers.dart -------------------------------------------------------------------------------- /lib/src/interpreter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/interpreter.dart -------------------------------------------------------------------------------- /lib/src/leaves.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/leaves.dart -------------------------------------------------------------------------------- /lib/src/trees.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/lib/src/trees.dart -------------------------------------------------------------------------------- /misc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/.DS_Store -------------------------------------------------------------------------------- /misc/generate_docs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/generate_docs.dart -------------------------------------------------------------------------------- /misc/generate_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/generate_docs.md -------------------------------------------------------------------------------- /misc/readme/readme_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/readme/readme_template.md -------------------------------------------------------------------------------- /misc/wiki/in/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/in/about.md -------------------------------------------------------------------------------- /misc/wiki/in/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/in/home.md -------------------------------------------------------------------------------- /misc/wiki/in/mvf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/in/mvf.md -------------------------------------------------------------------------------- /misc/wiki/in/svf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/in/svf.md -------------------------------------------------------------------------------- /misc/wiki/out/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/out/about.md -------------------------------------------------------------------------------- /misc/wiki/out/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/out/home.md -------------------------------------------------------------------------------- /misc/wiki/out/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/out/logo.png -------------------------------------------------------------------------------- /misc/wiki/out/mvf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/out/mvf.md -------------------------------------------------------------------------------- /misc/wiki/out/svf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/misc/wiki/out/svf.md -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/derivatives.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/derivatives.dart -------------------------------------------------------------------------------- /test/interpret.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/interpret.dart -------------------------------------------------------------------------------- /test/multi.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/multi.dart -------------------------------------------------------------------------------- /test/partials.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/partials.dart -------------------------------------------------------------------------------- /test/single.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/single.dart -------------------------------------------------------------------------------- /test/time.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/time.dart -------------------------------------------------------------------------------- /test/two-parameter-functions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/test/two-parameter-functions.dart -------------------------------------------------------------------------------- /tool/popmark.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ram6ler/function-tree/HEAD/tool/popmark.template --------------------------------------------------------------------------------