(index, notSetValue)
| 51 | } |
| 52 | |
| 53 | get(index, notSetValue) { |
| 54 | return this.has(index) |
| 55 | ? this._start + wrapIndex(this, index) * this._step |
| 56 | : notSetValue; |
| 57 | } |
| 58 | |
| 59 | includes(searchValue) { |
| 60 | const possibleIndex = (searchValue - this._start) / this._step; |