rbop 0.1.0

Rust framework for writing mathematical expression editors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(box_syntax)]
#![feature(box_patterns)]
#![feature(or_patterns)]

#![no_std]
extern crate core;
extern crate alloc;

pub mod node;
pub mod nav;
pub mod test;
pub mod render;
pub mod renderers;

pub trait Error : alloc::fmt::Display + alloc::fmt::Debug {}

pub use crate::node::{Node, Token};