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

Programmer Humor

19166 readers
575 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
762
ifn't (programming.dev)
submitted 8 months ago by JPDev to c/programmer_humor
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 26 points 8 months ago (2 children)

I'd take a not or "if not" operator tbh.

[–] Lmaydev 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)
[–] [email protected] 3 points 8 months ago (1 children)
[–] Lmaydev 2 points 8 months ago (1 children)

Pattern matching is different.

[–] [email protected] 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 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

[–] [email protected] 2 points 8 months ago

Stuff can be two things

[–] [email protected] 3 points 8 months ago

ifnt instead of ifn't