rsvim_core 0.1.3-alpha.2

The core library for RSVIM text editor.
Documentation
//! Internal tree structure.

pub mod context;
pub mod inode;
pub mod itree;
pub mod shapes;

#[cfg(test)]
mod context_tests;
#[cfg(test)]
mod inode_tests;
#[cfg(test)]
mod itree_tests;
#[cfg(test)]
mod shapes_tests;

pub use context::*;
pub use inode::*;
pub use itree::*;