rust/src/libcore/to_str.rs

117 lines
2.8 KiB
Rust
Raw Normal View History

trait to_str { fn to_str() -> ~str; }
2012-08-07 20:10:06 -05:00
impl int: to_str {
fn to_str() -> ~str { int::str(self) }
}
2012-08-07 20:10:06 -05:00
impl i8: to_str {
fn to_str() -> ~str { i8::str(self) }
}
2012-08-07 20:10:06 -05:00
impl i16: to_str {
fn to_str() -> ~str { i16::str(self) }
}
2012-08-07 20:10:06 -05:00
impl i32: to_str {
fn to_str() -> ~str { i32::str(self) }
}
2012-08-07 20:10:06 -05:00
impl i64: to_str {
fn to_str() -> ~str { i64::str(self) }
}
2012-08-07 20:10:06 -05:00
impl uint: to_str {
fn to_str() -> ~str { uint::str(self) }
}
2012-08-07 20:10:06 -05:00
impl u8: to_str {
fn to_str() -> ~str { u8::str(self) }
}
2012-08-07 20:10:06 -05:00
impl u16: to_str {
fn to_str() -> ~str { u16::str(self) }
}
2012-08-07 20:10:06 -05:00
impl u32: to_str {
fn to_str() -> ~str { u32::str(self) }
}
2012-08-07 20:10:06 -05:00
impl u64: to_str {
fn to_str() -> ~str { u64::str(self) }
}
2012-08-07 20:10:06 -05:00
impl float: to_str {
fn to_str() -> ~str { float::to_str(self, 4u) }
}
2012-08-07 20:10:06 -05:00
impl bool: to_str {
fn to_str() -> ~str { bool::to_str(self) }
}
2012-08-07 20:10:06 -05:00
impl (): to_str {
fn to_str() -> ~str { ~"()" }
}
2012-08-07 20:10:06 -05:00
impl ~str: to_str {
fn to_str() -> ~str { self }
}
2012-08-07 20:10:06 -05:00
impl<A: to_str copy, B: to_str copy> (A, B): to_str {
fn to_str() -> ~str {
let (a, b) = self;
~"(" + a.to_str() + ~", " + b.to_str() + ~")"
}
}
2012-08-07 20:10:06 -05:00
impl<A: to_str copy, B: to_str copy, C: to_str copy> (A, B, C): to_str {
fn to_str() -> ~str {
let (a, b, c) = self;
~"(" + a.to_str() + ~", " + b.to_str() + ~", " + c.to_str() + ~")"
}
}
2012-08-07 20:10:06 -05:00
impl<A: to_str> ~[A]: to_str {
fn to_str() -> ~str {
let mut acc = ~"[", first = true;
2012-06-30 18:19:07 -05:00
for vec::each(self) |elt| {
if first { first = false; }
else { str::push_str(acc, ~", "); }
str::push_str(acc, elt.to_str());
}
str::push_char(acc, ']');
acc
}
}
2012-08-07 20:10:06 -05:00
impl<A: to_str> @A: to_str {
fn to_str() -> ~str { ~"@" + (*self).to_str() }
}
2012-08-07 20:10:06 -05:00
impl<A: to_str> ~A: to_str {
fn to_str() -> ~str { ~"~" + (*self).to_str() }
}
#[cfg(test)]
mod tests {
#[test]
fn test_simple_types() {
assert 1.to_str() == ~"1";
assert (-1).to_str() == ~"-1";
assert 200u.to_str() == ~"200";
assert 2u8.to_str() == ~"2";
assert true.to_str() == ~"true";
assert false.to_str() == ~"false";
assert ().to_str() == ~"()";
assert (~"hi").to_str() == ~"hi";
}
#[test]
fn test_tuple_types() {
assert (1, 2).to_str() == ~"(1, 2)";
assert (~"a", ~"b", false).to_str() == ~"(a, b, false)";
assert ((), ((), 100)).to_str() == ~"((), ((), 100))";
}
#[test]
#[ignore]
fn test_vectors() {
let x: ~[int] = ~[];
assert x.to_str() == ~"~[]";
assert (~[1]).to_str() == ~"~[1]";
assert (~[1, 2, 3]).to_str() == ~"~[1, 2, 3]";
assert (~[~[], ~[1], ~[1, 1]]).to_str() ==
~"~[~[], ~[1], ~[1, 1]]";
}
#[test]
fn test_pointer_types() {
assert (@1).to_str() == ~"@1";
assert (~(true, false)).to_str() == ~"~(true, false)";
}
}