/// Trait used for computing the precedence order of operations.
////// Sets with a higher `Span` value will be prioritized during evaluation.
pubtraitSpan{/// Returns the span of values covered by this type.
fnspan(&self)->usize;}implSpan forbool{fnspan(&self)->usize{1}}#[cfg(feature ="bitvec_span")]implSpan forbitvec::prelude::BitVec{fnspan(&self)->usize{self.len()}}