MCPcopy Create free account
hub / github.com/csskit/csskit / combine

Method combine

crates/css_lexer/src/kindset.rs:110–112  ·  view source on GitHub ↗

Returns a new [KindSet] combined with the other [KindSet]. This function is marked `const` to allow creation of const [KindSets][KindSet].

(&self, ks: KindSet)

Source from the content-addressed store, hash-verified

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 ///

Callers 9

generic_voice.rsFile · 0.80
counter_style.rsFile · 0.80
position_area.rsFile · 0.80
bg_layer.rsFile · 0.80
mod.rsFile · 0.80
either.rsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected