Returns a new [KindSet] combined with the other [KindSet]. This function is marked `const` to allow creation of const [KindSets][KindSet].
(&self, ks: KindSet)
| 108 | /// |
| 109 | /// This function is marked `const` to allow creation of const [KindSets][KindSet]. |
| 110 | pub const fn combine(&self, ks: KindSet) -> Self { |
| 111 | Self(self.0 | ks.0) |
| 112 | } |
| 113 | |
| 114 | /// Returns a new [KindSet] without the supplied [Kind]. |
| 115 | /// |
no outgoing calls
no test coverage detected