Returns true if this anchor has any references.
(&self)
| 281 | |
| 282 | /// Returns true if this anchor has any references. |
| 283 | pub fn is_populated(&self) -> bool { |
| 284 | self.trunk.is_some() || !self.branches.is_empty() || !self.leaves.is_empty() |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | /// Anchor code learnings to the CRDT graph using FileOps from the recorded change. |
no test coverage detected