rust/src/test/auxiliary/static-methods-crate.rs

34 lines
595 B
Rust
Raw Normal View History

#[link(name = "static_methods_crate",
vers = "0.1")];
#[crate_type = "lib"];
export read, readMaybe;
trait read {
2012-08-20 14:23:37 -05:00
static fn readMaybe(s: ~str) -> Option<self>;
}
2012-08-07 20:10:06 -05:00
impl int: read {
2012-08-20 14:23:37 -05:00
static fn readMaybe(s: ~str) -> Option<int> {
int::from_str(s)
}
}
2012-08-07 20:10:06 -05:00
impl bool: read {
2012-08-20 14:23:37 -05:00
static fn readMaybe(s: ~str) -> Option<bool> {
match s {
2012-08-20 14:23:37 -05:00
~"true" => Some(true),
~"false" => Some(false),
_ => None
}
}
}
fn read<T: read Copy>(s: ~str) -> T {
match readMaybe(s) {
2012-08-20 14:23:37 -05:00
Some(x) => x,
_ => fail ~"read failed!"
}
}