this post was submitted on 17 Nov 2024
147 points (93.5% liked)

Programmer Humor

32572 readers
199 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 4 points 6 days ago (1 children)

It's a shorthand for writing this:

variable = if (input != null) input else default

This is equivalent:

variable = input ?: default
[–] [email protected] 2 points 6 days ago* (last edited 6 days ago) (1 children)
[–] [email protected] 2 points 6 days ago* (last edited 6 days ago)

It's in Kotlin and some other languages. C# has it but there it's actually A ?? B.