* @param {number} parentIndex * @return {boolean}
(parentIndex)
| 55 | * @return {boolean} |
| 56 | */ |
| 57 | hasLeftChild(parentIndex) { |
| 58 | return this.getLeftChildIndex(parentIndex) < this.heapContainer.length; |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * @param {number} parentIndex |
no test coverage detected