2012-01-03 16:07:26 +01:00
|
|
|
iface to_str {
|
2012-07-13 22:57:48 -07:00
|
|
|
fn to_str() -> ~str;
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
impl of to_str for int {
|
2012-07-13 22:57:48 -07:00
|
|
|
fn to_str() -> ~str { int::str(self) }
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
|
|
|
|
2012-06-29 16:26:56 -07:00
|
|
|
impl <T: to_str> of to_str for ~[T] {
|
2012-07-13 22:57:48 -07:00
|
|
|
fn to_str() -> ~str {
|
|
|
|
~"[" + str::connect(vec::map(self, |e| e.to_str() ), ~", ") + ~"]"
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-07-13 22:57:48 -07:00
|
|
|
assert 1.to_str() == ~"1";
|
|
|
|
assert (~[2, 3, 4]).to_str() == ~"[2, 3, 4]";
|
2012-01-03 16:37:41 +01:00
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
fn indirect<T: to_str>(x: T) -> ~str {
|
|
|
|
x.to_str() + ~"!"
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
2012-07-13 22:57:48 -07:00
|
|
|
assert indirect(~[10, 20]) == ~"[10, 20]!";
|
2012-01-03 16:37:41 +01:00
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
fn indirect2<T: to_str>(x: T) -> ~str {
|
2012-01-03 16:37:41 +01:00
|
|
|
indirect(x)
|
|
|
|
}
|
2012-07-13 22:57:48 -07:00
|
|
|
assert indirect2(~[1]) == ~"[1]!";
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|