• anton@lemmy.blahaj.zone
    link
    fedilink
    arrow-up
    6
    ·
    3 months ago

    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 _

      • Thelie@sh.itjust.worksOP
        link
        fedilink
        arrow-up
        1
        ·
        3 months ago

        I’m not sure how I would go about this in an elegant way since I’m matching the string I get from a message…

        • jimitsoni18@lemmy.zip
          link
          fedilink
          arrow-up
          1
          ·
          3 months ago

          If the message used enums for actions/procedures like SPAM_MEMES, then using enums would be more performant

    • Thelie@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      2
      ·
      3 months ago

      That’s a good point, thanks. Maybe I’ll go without the if entirely, the (janky) code is still very much in flux ;)