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.
|
|
|
|
|
2014-04-14 10:30:31 -05:00
|
|
|
#![crate_id="static_methods_crate#0.1"]
|
|
|
|
#![crate_type = "lib"]
|
2012-08-02 18:01:38 -05:00
|
|
|
|
2013-05-24 21:35:29 -05:00
|
|
|
use std::int;
|
|
|
|
|
2012-12-28 19:17:05 -06:00
|
|
|
pub trait read {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn readMaybe(s: String) -> Option<Self>;
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl read for int {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn readMaybe(s: String) -> Option<int> {
|
2014-05-12 19:56:43 -05:00
|
|
|
from_str::<int>(s.as_slice())
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl read for bool {
|
2014-05-22 18:57:53 -05:00
|
|
|
fn readMaybe(s: String) -> Option<bool> {
|
2014-03-07 15:15:50 -06:00
|
|
|
match s.as_slice() {
|
|
|
|
"true" => Some(true),
|
|
|
|
"false" => Some(false),
|
2012-08-20 14:23:37 -05:00
|
|
|
_ => None
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 18:57:53 -05:00
|
|
|
pub fn read<T:read>(s: String) -> 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-10-21 15:08:31 -05:00
|
|
|
_ => fail!("read failed!")
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|