* Determines whether a value is selected.
(value: T)
| 124 | * Determines whether a value is selected. |
| 125 | */ |
| 126 | isSelected(value: T): boolean { |
| 127 | return this._selection.has(this._getConcreteValue(value)); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Determines whether the model does not have a value. |
no test coverage detected