Sets set BooleanSet values in batch.
(val map[T]bool, bs *BooleanSet)
| 67 | |
| 68 | // Sets set BooleanSet values in batch. |
| 69 | func Sets[T constraints.Integer](val map[T]bool, bs *BooleanSet) { |
| 70 | for flag, v := range val { |
| 71 | Set(flag, v, bs) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | // Set sets a BooleanSet value. |
| 76 | func Set[T constraints.Integer](flag T, enabled bool, bs *BooleanSet) { |
no test coverage detected