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