1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3pub mod crdt;
14pub mod indexing;
15pub mod types;
16
17pub use crdt::{
19 generate_replica_id, AddWins, DeltaBuffer, DeltaCrdt, Dot, DotContext, GCounter, LWWRegister,
20 MVRegister, Merge, ORMap, ORSet, PNCounter, RemoveWins, ReplicaId, SetBias, VClock, RGA, YATA,
21};
22pub use types::{
23 Bool, Byte, Char, Int, LogosContains, LogosMap, LogosSeq, Map, Nat, Real, Seq, Set, Text,
24 Tuple, Unit, Value,
25};
26pub use rustc_hash::{FxHashMap, FxHashSet};
27pub use indexing::{LogosGetChar, LogosIndex, LogosIndexMut};