JPDev@programming.dev to Programmer Humor@programming.dev · 3 年前ifn'tprogramming.devimagemessage-square127linkfedilinkarrow-up1775arrow-down111
arrow-up1764arrow-down1imageifn'tprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 3 年前message-square127linkfedilink
minus-squareLmaydev@programming.devdeleted by creatorlinkfedilinkarrow-up2·3 年前Pattern matching is different.
minus-squareCaveman@lemmy.worldlinkfedilinkarrow-up2·3 年前Yeah, I just said it since you used it with null. I used it a lot for enums
minus-squareLmaydev@programming.devdeleted by creatorlinkfedilinkarrow-up1·3 年前The type matching is the most common thing I use it with. Combined with inline variables. if (x is string { Length: 5} s) { // do stuff with s } And switch expressions. As a side note inline variables are amazing haha
It also has a
!=.Pattern matching is different.
Yeah, I just said it since you used it with null. I used it a lot for enums
The type matching is the most common thing I use it with. Combined with inline variables.
And switch expressions.
As a side note inline variables are amazing haha