Add optimal representation

This commit is contained in:
Andras Schmelczer 2025-10-26 21:19:56 +00:00
parent e052aa46c4
commit 3da0673af6
5 changed files with 325 additions and 35 deletions

View file

@ -1,10 +1,13 @@
mod edited_text;
mod operation;
mod utils;
mod transport;
use std::fmt::Debug;
pub use edited_text::{ChangeSet, EditedText};
pub use transport::{ChangeSet};
pub use operation::Operation;
pub use edited_text::{EditedText};
use crate::{Tokenizer, types::text_with_cursors::TextWithCursors};