* @param {number} parentIndex * @return {*}
(parentIndex)
| 79 | * @return {*} |
| 80 | */ |
| 81 | rightChild(parentIndex) { |
| 82 | return this.heapContainer[this.getRightChildIndex(parentIndex)]; |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * @param {number} childIndex |
no test coverage detected