MCPcopy Create free account
hub / github.com/GateNLP/gate-core / leftOf

Method leftOf

src/main/java/gate/util/RBTreeMap.java:1233–1235  ·  view source on GitHub ↗
(Entry<X,Y> p)

Source from the content-addressed store, hash-verified

1231 }
1232
1233 private static <X,Y> Entry<X,Y> leftOf(Entry<X,Y> p) {
1234 return (p == null)? null: p.left;
1235 }
1236
1237 private static <X,Y> Entry<X,Y> rightOf(Entry<X,Y> p) {
1238 return (p == null)? null: p.right;

Callers 2

fixAfterInsertionMethod · 0.95
fixAfterDeletionMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected