From: Paolo Falabella Date: Wed, 2 Jul 2014 15:39:43 +0000 (+0100) Subject: Rationals that have a 1 denom should print like ints X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=fb560c673d5ed9edf81a1782c4c9273cf08002f6;p=rust.git Rationals that have a 1 denom should print like ints --- diff --git a/src/libnum/rational.rs b/src/libnum/rational.rs index 9a455edf2c0..c35b2976b40 100644 --- a/src/libnum/rational.rs +++ b/src/libnum/rational.rs @@ -274,12 +274,17 @@ impl Num for Ratio {} /* String conversions */ -impl fmt::Show for Ratio { - /// Renders as `numer/denom`. +impl fmt::Show for Ratio { + /// Renders as `numer/denom`. If denom=1, renders as numer. fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "{}/{}", self.numer, self.denom) + if self.denom == One::one() { + write!(f, "{}", self.numer) + } else { + write!(f, "{}/{}", self.numer, self.denom) + } } } + impl ToStrRadix for Ratio { /// Renders as `numer/denom` where the numbers are in base `radix`. fn to_str_radix(&self, radix: uint) -> String { @@ -291,21 +296,20 @@ fn to_str_radix(&self, radix: uint) -> String { impl FromStr for Ratio { - /// Parses `numer/denom`. + /// Parses `numer/denom` or just `numer` fn from_str(s: &str) -> Option> { - let split: Vec<&str> = s.splitn('/', 1).collect(); - if split.len() < 2 { - return None + let mut split = s.splitn('/', 1); + + let num = split.next().and_then(|n| FromStr::from_str(n)); + let den = split.next().or(Some("1")).and_then(|d| FromStr::from_str(d)); + + match (num, den) { + (Some(n), Some(d)) => Some(Ratio::new(n, d)), + _ => None } - let a_option: Option = FromStr::from_str(*split.get(0)); - a_option.and_then(|a| { - let b_option: Option = FromStr::from_str(*split.get(1)); - b_option.and_then(|b| { - Some(Ratio::new(a.clone(), b.clone())) - }) - }) } } + impl FromStrRadix for Ratio { /// Parses `numer/denom` where the numbers are in base `radix`. @@ -429,6 +433,13 @@ fn test_is_integer() { assert!(!_neg1_2.is_integer()); } + #[test] + fn test_show() { + assert_eq!(format!("{}", _2), "2".to_string()); + assert_eq!(format!("{}", _1_2), "1/2".to_string()); + assert_eq!(format!("{}", _0), "0".to_string()); + assert_eq!(format!("{}", Ratio::from_integer(-2i)), "-2".to_string()); + } mod arith { use super::{_0, _1, _2, _1_2, _3_2, _neg1_2, to_big}; @@ -562,11 +573,11 @@ fn test(r: Rational, s: String) { assert_eq!(FromStr::from_str(s.as_slice()), Some(r)); assert_eq!(r.to_str(), s); } - test(_1, "1/1".to_string()); - test(_0, "0/1".to_string()); + test(_1, "1".to_string()); + test(_0, "0".to_string()); test(_1_2, "1/2".to_string()); test(_3_2, "3/2".to_string()); - test(_2, "2/1".to_string()); + test(_2, "2".to_string()); test(_neg1_2, "-1/2".to_string()); } #[test]