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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-02-27 15:13:35 -08:00
|
|
|
impl read for isize {
|
|
|
|
fn readMaybe(s: String) -> Option<isize> {
|
2015-01-27 22:52:32 -08:00
|
|
|
s.parse().ok()
|
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> {
|
2015-02-01 21:53:25 -05:00
|
|
|
match &*s {
|
2014-03-07 16:15:50 -05:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|