2012-12-10 19:32:48 -06: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-02 18:01:38 -05:00
|
|
|
#[link(name = "static_methods_crate",
|
|
|
|
vers = "0.1")];
|
|
|
|
|
|
|
|
#[crate_type = "lib"];
|
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::int;
|
|
|
|
|
2012-12-28 19:17:05 -06:00
|
|
|
pub trait read {
|
2013-03-21 21:07:54 -05:00
|
|
|
fn readMaybe(s: ~str) -> Option<Self>;
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl read for int {
|
2013-03-21 21:07:54 -05:00
|
|
|
fn readMaybe(s: ~str) -> Option<int> {
|
2013-09-15 00:27:32 -05:00
|
|
|
from_str::<int>(s)
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl read for bool {
|
2013-03-21 21:07:54 -05:00
|
|
|
fn readMaybe(s: ~str) -> Option<bool> {
|
2012-08-02 18:01:38 -05:00
|
|
|
match s {
|
2012-08-20 14:23:37 -05:00
|
|
|
~"true" => Some(true),
|
|
|
|
~"false" => Some(false),
|
|
|
|
_ => None
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-10 16:43:25 -05:00
|
|
|
pub fn read<T:read>(s: ~str) -> T {
|
2012-12-18 20:05:16 -06:00
|
|
|
match read::readMaybe(s) {
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(x) => x,
|
2013-09-29 21:23:57 -05:00
|
|
|
_ => fail2!("read failed!")
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|