(self, other: TokenSet)
| 18 | } |
| 19 | |
| 20 | pub(crate) const fn union(self, other: TokenSet) -> TokenSet { |
| 21 | TokenSet(self.0 | other.0) |
| 22 | } |
| 23 | |
| 24 | pub(crate) const fn remove(self, kind: TokenKind) -> TokenSet { |
| 25 | TokenSet(self.0 & !mask(kind)) |
no test coverage detected