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

Method has_user_actionable

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

Returns `true` if there are any conflicts requiring user action.

(&self)

Source from the content-addressed store, hash-verified

605
606 /// Returns `true` if there are any conflicts requiring user action.
607 pub fn has_user_actionable(&self) -> bool {
608 self.conflicts.iter().any(|c| c.requires_user_action())
609 }
610
611 /// Returns conflicts that require user action.
612 pub fn user_actionable(&self) -> impl Iterator<Item = &CrdtConflict> {

Callers

nothing calls this directly

Calls 2

requires_user_actionMethod · 0.80
iterMethod · 0.45

Tested by

no test coverage detected