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-10-15 01:05:01 -05:00
|
|
|
#![crate_name="static_methods_crate"]
|
2014-04-14 10:30:31 -05:00
|
|
|
#![crate_type = "lib"]
|
2012-08-02 18:01:38 -05:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2015-02-27 17:13:35 -06:00
|
|
|
impl read for isize {
|
|
|
|
fn readMaybe(s: String) -> Option<isize> {
|
2015-01-28 00:52:32 -06:00
|
|
|
s.parse().ok()
|
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> {
|
2015-02-01 20:53:25 -06:00
|
|
|
match &*s {
|
2014-03-07 15:15:50 -06:00
|
|
|
"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,
|
2014-10-09 14:17:22 -05:00
|
|
|
_ => panic!("read panicked!")
|
2012-08-02 18:01:38 -05:00
|
|
|
}
|
|
|
|
}
|