blob: 159a1e1b8ba028195f55db3859a1b4be7104088c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#[link(name = "static_methods_crate",
vers = "0.1")];
#[crate_type = "lib"];
#[legacy_exports];
export read, readMaybe;
trait read {
static fn readMaybe(s: ~str) -> Option<self>;
}
impl int: read {
static fn readMaybe(s: ~str) -> Option<int> {
int::from_str(s)
}
}
impl bool: read {
static fn readMaybe(s: ~str) -> Option<bool> {
match s {
~"true" => Some(true),
~"false" => Some(false),
_ => None
}
}
}
fn read<T: read Copy>(s: ~str) -> T {
match readMaybe(s) {
Some(x) => x,
_ => fail ~"read failed!"
}
}
|