mathypad-core 0.1.17

Core calculation and parsing logic for Mathypad
Documentation
1
2
3
4
5
6
7
8
9
//! Core abstractions for shared application state and logic

pub mod file_ops;
pub mod highlighting;
pub mod state;

pub use file_ops::{FileOperations, deserialize_lines, serialize_lines};
pub use highlighting::{HighlightType, HighlightedSpan, highlight_expression};
pub use state::MathypadCore;