MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / find

Method find

chapter24/src/main/java/com/seaofnodes/simple/node/Node.java:726–726  ·  view source on GitHub ↗

Debugging utility to find a Node by index

(int nid)

Source from the content-addressed store, hash-verified

724 * Debugging utility to find a Node by index
725 */
726 public Node find(int nid) { return _find(nid, new BitSet()); }
727 private Node _find(int nid, BitSet bs) {
728 if( bs.get(_nid) ) return null; // Been there, done that
729 bs.set(_nid);

Callers 11

unlink_allMethod · 0.45
delUseMethod · 0.45
killOrderedMethod · 0.45
iskeepMethod · 0.45
subsumeMethod · 0.45
insertAfterMethod · 0.45
insertBeforeMethod · 0.45
setDefOrderedMethod · 0.45
removeSplitMethod · 0.45
addDepMethod · 0.45
asOffsetMethod · 0.45

Calls 1

_findMethod · 0.95

Tested by

no test coverage detected