| Crates.io | ketree |
| lib.rs | ketree |
| version | 0.5.2 |
| created_at | 2017-07-25 01:12:50.273415+00 |
| updated_at | 2017-11-18 23:08:29.806587+00 |
| description | A tree representing a symbolic expression that can be created with Ketos. |
| homepage | https://github.com/Wulfsta/ketree |
| repository | https://github.com/Wulfsta/ketree |
| max_upload_size | |
| id | 24934 |
| size | 34,413 |
This is a small library that allows for the creation of trees that represent symbolic expressions using Ketos.
Add the following to Cargo.toml:
[depenencies]
ketree = "0.5.2"
Then, to the crate root, add:
extern crate ketree;
You will then need to add Ketos to your project and write a struct that implements ModuleLoader. This struct can then be passed to an instance of TreeBuilder to create a tree. Check tests for an example.