2012-12-10 17:32:48 -08:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-08-13 15:50:29 -07:00
|
|
|
// xfail-fast
|
|
|
|
|
2013-05-17 13:12:42 -07:00
|
|
|
#[no_std];
|
2012-08-13 14:58:09 -07:00
|
|
|
|
2013-05-20 17:07:24 -07:00
|
|
|
extern mod std;
|
2012-08-13 14:58:09 -07:00
|
|
|
|
2013-06-11 02:34:14 +10:00
|
|
|
use std::str::StrVector;
|
2013-06-29 15:05:50 +10:00
|
|
|
use std::vec::ImmutableVector;
|
2013-08-09 07:19:23 -07:00
|
|
|
use std::iterator::Iterator;
|
2013-06-29 15:05:50 +10:00
|
|
|
use std::int;
|
2012-08-13 14:58:09 -07:00
|
|
|
|
2012-07-31 10:27:51 -07:00
|
|
|
trait to_str {
|
2013-03-12 19:32:14 -07:00
|
|
|
fn to_str(&self) -> ~str;
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
|
|
|
|
2013-02-14 11:47:00 -08:00
|
|
|
impl to_str for int {
|
2013-03-13 17:57:30 -07:00
|
|
|
fn to_str(&self) -> ~str { int::to_str(*self) }
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
|
|
|
|
2013-02-20 17:07:17 -08:00
|
|
|
impl<T:to_str> to_str for ~[T] {
|
2013-03-12 19:32:14 -07:00
|
|
|
fn to_str(&self) -> ~str {
|
2013-08-09 20:09:47 -07:00
|
|
|
fmt!("[%s]", self.iter().map(|e| e.to_str()).collect::<~[~str]>().connect(", "))
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2013-03-28 18:39:09 -07:00
|
|
|
assert!(1.to_str() == ~"1");
|
|
|
|
assert!((~[2, 3, 4]).to_str() == ~"[2, 3, 4]");
|
2012-01-03 16:37:41 +01:00
|
|
|
|
2013-02-20 17:07:17 -08:00
|
|
|
fn indirect<T:to_str>(x: T) -> ~str {
|
2012-07-13 22:57:48 -07:00
|
|
|
x.to_str() + ~"!"
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|
2013-03-28 18:39:09 -07:00
|
|
|
assert!(indirect(~[10, 20]) == ~"[10, 20]!");
|
2012-01-03 16:37:41 +01:00
|
|
|
|
2013-02-20 17:07:17 -08:00
|
|
|
fn indirect2<T:to_str>(x: T) -> ~str {
|
2013-02-15 02:44:18 -08:00
|
|
|
indirect(x)
|
2012-01-03 16:37:41 +01:00
|
|
|
}
|
2013-03-28 18:39:09 -07:00
|
|
|
assert!(indirect2(~[1]) == ~"[1]!");
|
2012-01-03 16:07:26 +01:00
|
|
|
}
|