* Selects a value or an array of values. * @param values The values to select * @return Whether the selection changed as a result of this call
(...values: T[])
| 75 | * @return Whether the selection changed as a result of this call |
| 76 | */ |
| 77 | select(...values: T[]): boolean { |
| 78 | return this._select(values); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Deselects a value or an array of values. |