()
| 1199 | } |
| 1200 | |
| 1201 | next(): boolean { |
| 1202 | if (this._step > 0 ? this._idx < this._end : this._idx >= this._end) { |
| 1203 | this.item = this._list[this._idx]; |
| 1204 | this.key = this._idx = this._idx + this._step; |
| 1205 | return true; |
| 1206 | } |
| 1207 | return false; |
| 1208 | } |
| 1209 | } |
| 1210 | |
| 1211 | export function clearTmpModel(model: Model): void { |
no outgoing calls
no test coverage detected