(value: SelectableWithIndex<T>)
| 54 | ) {} |
| 55 | |
| 56 | isSelected(value: SelectableWithIndex<T>): boolean { |
| 57 | return this._selectionMap.has(this._getTrackedByValue(value)); |
| 58 | } |
| 59 | |
| 60 | select(...selects: SelectableWithIndex<T>[]) { |
| 61 | if (!this._multiple && selects.length > 1 && (typeof ngDevMode === 'undefined' || ngDevMode)) { |
no test coverage detected