2018-10-06 18:18:06 +02:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
|
2018-10-11 12:16:22 +02:00
|
|
|
|
2017-09-18 12:47:33 +02:00
|
|
|
|
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::if_let_some_result)]
|
2016-10-02 22:49:29 +02:00
|
|
|
|
|
|
|
fn str_to_int(x: &str) -> i32 {
|
2017-04-23 15:25:22 +02:00
|
|
|
if let Some(y) = x.parse().ok() {
|
2016-10-02 22:49:29 +02:00
|
|
|
y
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn str_to_int_ok(x: &str) -> i32 {
|
|
|
|
if let Ok(y) = x.parse() {
|
|
|
|
y
|
|
|
|
} else {
|
|
|
|
0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let y = str_to_int("1");
|
|
|
|
let z = str_to_int_ok("2");
|
|
|
|
println!("{}{}", y, z);
|
|
|
|
}
|