1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 21:17:46 +00:00

std::char::UnicodeChar removal

This commit is contained in:
Michael Gehring 2015-01-08 14:03:00 +01:00
parent b8a96da278
commit 48f129ea49
2 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@
extern crate getopts;
use std::char::UnicodeChar;
use std::char::CharExt;
use std::io::{stdin};
use std::io::{BufferedReader, BytesReader};
use std::io::fs::File;
@ -144,7 +144,7 @@ fn obsolete(options: &[String]) -> (Vec<String>, Option<uint>) {
let len = current.len();
for pos in range(1, len) {
// Ensure that the argument is only made out of digits
if !UnicodeChar::is_numeric(current[pos] as char) { break; }
if !(current[pos] as char).is_numeric() { break; }
// If this is the last number
if pos == len - 1 {

View file

@ -11,7 +11,7 @@
extern crate getopts;
use std::char::UnicodeChar;
use std::char::CharExt;
use std::io::{stdin, stdout};
use std::io::{BufferedReader, BytesReader};
use std::io::fs::File;
@ -217,7 +217,7 @@ fn obsolete(options: &[String]) -> (Vec<String>, Option<uint>) {
let len = current.len();
for pos in range(1, len) {
// Ensure that the argument is only made out of digits
if !UnicodeChar::is_numeric(current[pos] as char) { break; }
if !(current[pos] as char).is_numeric() { break; }
// If this is the last number
if pos == len - 1 {