MCPcopy Create free account
hub / github.com/LFYSec/MScan / isRed

Method isRed

src/test/resources/pta/basic/RedBlackBST.java:28–31  ·  view source on GitHub ↗
(Node x)

Source from the content-addressed store, hash-verified

26 }
27
28 private boolean isRed(Node x) {
29 if (x == null) return false;
30 return x.color == RED;
31 }
32
33 private int size(Node x) {
34 if (x == null) return 0;

Callers 9

putMethod · 0.95
deleteMinMethod · 0.95
deleteMaxMethod · 0.95
deleteMethod · 0.95
moveRedLeftMethod · 0.95
moveRedRightMethod · 0.95
balanceMethod · 0.95
is23Method · 0.95
isBalancedMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected