Programming as a hobby means I can do whatever I want!
Programming as a hobby means I can do whatever I want!
Instead of
if let Some(a_) = a{ () } else if let Some(b_)=b{ () } else { dostuff }you could just use
if a.isNone()&&b.isNone(){ dostuff }Also if you don’t use the value in a match just use _