* What is the element at the given index? * * @param Number aIdx
(aIdx)
| 82 | * @param Number aIdx |
| 83 | */ |
| 84 | at(aIdx) { |
| 85 | if (aIdx >= 0 && aIdx < this._array.length) { |
| 86 | return this._array[aIdx]; |
| 87 | } |
| 88 | throw new Error("No element indexed by " + aIdx); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Returns the array representation of this set (which has the proper indices |
no outgoing calls
no test coverage detected