mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-02 05:57:46 +00:00
collections::BitvSet -> collections::BitSet
This commit is contained in:
parent
b6ff2aeeae
commit
4d62e8289a
1 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ extern crate getopts;
|
|||
|
||||
use getopts::OptGroup;
|
||||
use std::char::from_u32;
|
||||
use std::collections::{BitvSet, VecMap};
|
||||
use std::collections::{BitSet, VecMap};
|
||||
use std::old_io::{BufferedReader, print};
|
||||
use std::old_io::stdio::{stdin_raw, stdout};
|
||||
use std::iter::FromIterator;
|
||||
|
@ -89,7 +89,7 @@ fn expand_set(s: &str) -> Vec<char> {
|
|||
}
|
||||
|
||||
fn delete(set: Vec<char>, complement: bool) {
|
||||
let mut bset = BitvSet::new();
|
||||
let mut bset = BitSet::new();
|
||||
let mut out = stdout();
|
||||
|
||||
for &c in set.iter() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue