rsvim_core 0.1.2

The core library for RSVIM text editor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Internal tree structure.

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

// Re-export
pub use inode::*;
pub use itree::*;

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