We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
BitSet::to_hybrid
1 parent 06faf58 commit b7cf697Copy full SHA for b7cf697
compiler/rustc_index/src/bit_set.rs
@@ -243,12 +243,6 @@ impl<T: Idx> BitSet<T> {
243
BitIter::new(&self.words)
244
}
245
246
- /// Duplicates the set as a hybrid set.
247
- pub fn to_hybrid(&self) -> HybridBitSet<T> {
248
- // Note: we currently don't bother trying to make a Sparse set.
249
- HybridBitSet::Dense(self.to_owned())
250
- }
251
-
252
/// Set `self = self | other`. In contrast to `union` returns `true` if the set contains at
253
/// least one bit that is not in `other` (i.e. `other` is not a superset of `self`).
254
///
0 commit comments