()
| 189 | } |
| 190 | |
| 191 | private _selectAll() { |
| 192 | const toSelect: SelectableWithIndex<T>[] = []; |
| 193 | this._data.forEach((value, index) => { |
| 194 | toSelect.push({value, index}); |
| 195 | }); |
| 196 | |
| 197 | this._selection.select(...toSelect); |
| 198 | } |
| 199 | |
| 200 | private _clearAll() { |
| 201 | const toDeselect: SelectableWithIndex<T>[] = []; |
no test coverage detected