Skip to main content

contains_all

Function contains_all 

Source
pub fn contains_all(snapshot: &[u64], mask: &[u64]) -> bool
Expand description

Returns true if all bits set in mask are also set in snapshot. Equivalent to: (snapshot & mask) == mask