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