2012-01-04 17:28:16 +01:00
|
|
|
iface to_str {
|
|
|
|
fn to_str() -> str;
|
|
|
|
}
|
|
|
|
impl of to_str for int {
|
|
|
|
fn to_str() -> str { int::str(self) }
|
|
|
|
}
|
|
|
|
impl of to_str for str {
|
|
|
|
fn to_str() -> str { self }
|
|
|
|
}
|
2012-01-06 10:23:55 +01:00
|
|
|
impl of to_str for () {
|
|
|
|
fn to_str() -> str { "()" }
|
|
|
|
}
|
2012-01-04 17:28:16 +01:00
|
|
|
|
|
|
|
iface map<T> {
|
2012-06-25 20:00:46 -07:00
|
|
|
fn map<U>(f: fn(T) -> U) -> [U]/~;
|
2012-01-04 17:28:16 +01:00
|
|
|
}
|
2012-06-25 20:00:46 -07:00
|
|
|
impl <T> of map<T> for [T]/~ {
|
|
|
|
fn map<U>(f: fn(T) -> U) -> [U]/~ {
|
|
|
|
let mut r = []/~;
|
|
|
|
for self.each {|x| r += [f(x)]/~; }
|
2012-01-04 17:28:16 +01:00
|
|
|
r
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-25 20:00:46 -07:00
|
|
|
fn foo<U, T: map<U>>(x: T) -> [str]/~ {
|
2012-01-04 17:28:16 +01:00
|
|
|
x.map({|_e| "hi" })
|
|
|
|
}
|
2012-06-25 20:00:46 -07:00
|
|
|
fn bar<U: to_str, T: map<U>>(x: T) -> [str]/~ {
|
2012-01-04 17:28:16 +01:00
|
|
|
x.map({|_e| _e.to_str() })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2012-06-29 15:08:12 -07:00
|
|
|
assert foo([1]/~) == ["hi"]/~;
|
|
|
|
assert bar::<int, [int]/~>([4, 5]/~) == ["4", "5"]/~;
|
|
|
|
assert bar::<str, [str]/~>(["x", "y"]/~) == ["x", "y"]/~;
|
|
|
|
assert bar::<(), [()]/~>([()]/~) == ["()"]/~;
|
2012-01-04 17:28:16 +01:00
|
|
|
}
|