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

Method getLeftChild

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

get a node's left 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

686 * @param index _KEY or _VALUE
687 */
688 private static Node getLeftChild(Node node, int index)
689 {
690 return (node == null) ? null
691 : node.getLeft(index);
692 }
693
694 /**
695 * is this node its parent's left child? mind you, the node, or

Callers 2

doRedBlackInsertMethod · 0.95
doRedBlackDeleteFixupMethod · 0.95

Calls 1

getLeftMethod · 0.65

Tested by

no test coverage detected