1 个稳定版本
1.0.3 | 2021年10月3日 |
---|---|
1.0.2 |
|
#2217 在 Rust 模式
3KB
使用
它类似于匹配,但返回一个 Option
let to_match = "hello world";
let opt = match_start! {to_match,
"hello" | "something" => "something else"
"world" | "another" => "another thing"
};
if let Some(value) = opt {
println!("{}", value); // Will print "something else"
}