MCPcopy Create free account
hub / github.com/apache/poi / getRightChild

Method getRightChild

src/java/org/apache/poi/util/BinaryTree.java:675–679  ·  view source on GitHub ↗

get a node's right child. mind you, the node may not exist. no problem @param node the node (may be null) in question @param index _KEY or _VALUE

(Node node, int index)

Source from the content-addressed store, hash-verified

673 * @param index _KEY or _VALUE
674 */
675 private static Node getRightChild(Node node, int index)
676 {
677 return (node == null) ? null
678 : node.getRight(index);
679 }
680
681 /**
682 * get a node's left child. mind you, the node may not exist. no

Callers 2

doRedBlackInsertMethod · 0.95
doRedBlackDeleteFixupMethod · 0.95

Calls 1

getRightMethod · 0.65

Tested by

no test coverage detected