Selects an array of values.
(values: T[])
| 159 | |
| 160 | /** Selects an array of values. */ |
| 161 | private _select(values: T[]) { |
| 162 | this._verifyValueAssignment(values); |
| 163 | values.forEach(value => this._markSelected(value)); |
| 164 | const changed = this._hasQueuedChanges(); |
| 165 | this._emitChangeEvent(); |
| 166 | return changed; |
| 167 | } |
| 168 | |
| 169 | /** Deselects an array of values. */ |
| 170 | private _deselect(values: T[]) { |
no test coverage detected