We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ce740 commit 75f3e13Copy full SHA for 75f3e13
2 files changed
crates/loro-ffi/src/doc.rs
@@ -854,6 +854,10 @@ impl LoroDoc {
854
pub fn delete_root_container(&self, cid: ContainerID) {
855
self.doc.delete_root_container(cid.into());
856
}
857
+
858
+ fn new_api(&self) {
859
+ println!("new api");
860
+ }
861
862
863
pub trait ChangeAncestorsTraveler: Sync + Send {
crates/loro-internal/src/loro.rs
@@ -1915,6 +1915,10 @@ impl LoroDoc {
1915
.hide_empty_root_containers
1916
.store(hide, std::sync::atomic::Ordering::Relaxed);
1917
1918
1919
1920
1921
1922
1923
1924
// FIXME: PERF: This method is quite slow because it iterates all the changes
0 commit comments