ketree

Crates.ioketree
lib.rsketree
version0.5.2
sourcesrc
created_at2017-07-25 01:12:50.273415
updated_at2017-11-18 23:08:29.806587
descriptionA tree representing a symbolic expression that can be created with Ketos.
homepagehttps://github.com/Wulfsta/ketree
repositoryhttps://github.com/Wulfsta/ketree
max_upload_size
id24934
size34,413
Luke V. (Wulfsta)

documentation

https://docs.rs/ketree/

README

Ketree

This is a small library that allows for the creation of trees that represent symbolic expressions using Ketos.

Building a Tree

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.

Commit count: 24

cargo fmt