* @param {number} parentIndex * @return {boolean}
(parentIndex)
| 63 | * @return {boolean} |
| 64 | */ |
| 65 | hasRightChild(parentIndex) { |
| 66 | return this.getRightChildIndex(parentIndex) < this.heapContainer.length; |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * @param {number} parentIndex |
no test coverage detected