pub trait BitSetExt<T> {
// Required method
fn contains(&self, elem: T) -> bool;
}
Expand description
Analysis domains are all bitsets of various kinds. This trait holds operations needed by all of them.
pub trait BitSetExt<T> {
// Required method
fn contains(&self, elem: T) -> bool;
}
Analysis domains are all bitsets of various kinds. This trait holds operations needed by all of them.