this post was submitted on 18 Jan 2024
740 points (98.6% liked)

Programmer Humor

19187 readers
1107 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Lmaydev@programming.dev 9 points 8 months ago* (last edited 8 months ago) (2 children)

It has a not keyword it's used for pattern matching.

if (x is not null)
[–] olafurp@lemmy.world 3 points 8 months ago (1 children)
[–] Lmaydev@programming.dev 2 points 8 months ago (1 children)

Pattern matching is different.

[–] olafurp@lemmy.world 2 points 8 months ago (1 children)

Yeah, I just said it since you used it with null. I used it a lot for enums

[–] Lmaydev@programming.dev 1 points 8 months ago* (last edited 8 months ago)

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

[–] Patches@sh.itjust.works 2 points 8 months ago

Stuff can be two things