762
ifn't (programming.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] olafurp@lemmy.world 26 points 7 months ago

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

[-] Lmaydev@programming.dev 9 points 7 months ago* (last edited 7 months ago)

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

if (x is not null)
[-] olafurp@lemmy.world 3 points 7 months ago
[-] Lmaydev@programming.dev 2 points 7 months ago

Pattern matching is different.

[-] olafurp@lemmy.world 2 points 7 months ago

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

[-] Lmaydev@programming.dev 1 points 7 months ago* (last edited 7 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 7 months ago

Stuff can be two things

[-] Appoxo@lemmy.dbzer0.com 3 points 7 months ago

ifnt instead of ifn't

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

Programmer Humor

19138 readers
665 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