let mut iter = input.chars().peekable(); loop { match iter.peek().map(|c| *c) { None => return bits, Some(c) => if c.is_digit(10) ...
確定! 回上一頁