MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / has_unresolved

Method has_unresolved

atomic-core/src/crdt/apply/conflict.rs:617–619  ·  view source on GitHub ↗

Returns `true` if there are any unresolved conflicts.

(&self)

Source from the content-addressed store, hash-verified

615
616 /// Returns `true` if there are any unresolved conflicts.
617 pub fn has_unresolved(&self) -> bool {
618 self.conflicts.iter().any(|c| !c.is_resolved())
619 }
620
621 /// Returns unresolved conflicts.
622 pub fn unresolved(&self) -> impl Iterator<Item = &CrdtConflict> {

Callers

nothing calls this directly

Calls 2

iterMethod · 0.45
is_resolvedMethod · 0.45

Tested by

no test coverage detected