(index, notSetValue)
| 32 | // @pragma Access |
| 33 | |
| 34 | get(index, notSetValue) { |
| 35 | let head = this._head; |
| 36 | index = wrapIndex(this, index); |
| 37 | while (head && index--) { |
| 38 | head = head.next; |
| 39 | } |
| 40 | return head ? head.value : notSetValue; |
| 41 | } |
| 42 | |
| 43 | peek() { |
| 44 | return this._head && this._head.value; |
nothing calls this directly
no test coverage detected