|
|
|
|
|
by safarimonkey
1936 days ago
|
|
I ran into this the other day, and it took me a moment to realise that I could just use `matches!`: // want to do this
if not let Some("pattern") = val {
doSomething();
}
// can instead do
if !matches!(val, Some("pattern")) {
doSomething();
}
|
|