deltaCompose method
Composes two locally-produced Δ-state fragments. For most CRDT types this coincides with join. Override when the cross-replica join applies filters (tombstone semantics, max reduction) that would be wrong for in-replica delta accumulation.
Implementation
@override
Fugue<T> deltaCompose(Fugue<T> other) => join(other);