151
Elvis (feddit.it)
you are viewing a single comment's thread
view the rest of the comments
[-] Cube6392@beehaw.org 16 points 1 month ago

been programming since 2008. the fuck is an elvis operator?

[-] jerkface@lemmy.ca 8 points 1 month ago

Been programming since the 80s, ditto.

[-] luciferofastora@lemmy.zip 4 points 1 month ago
[-] Cube6392@beehaw.org 4 points 1 month ago

gotacha. i've only ever heard them called ternaries. maybe i'm old. maybe i'm too young. definitely one of the two

[-] QuazarOmega@lemy.lol 8 points 1 month ago

It specifically refers to this shorthand ?: that works like this:

$value = $thing_that_could_be_truthy ?: 'fallback value';

# same as

$value = $thing_that_could_be_truthy ? $thing_that_could_be_truthy : 'fallback value';

The condition is also the value if it is truthy

[-] dev_null@lemmy.ml 3 points 1 month ago* (last edited 1 month ago)

It's a shorthand for writing this:

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

This is equivalent:

variable = input ?: default

The answers confusing it with the ternary operator are wrong.

this post was submitted on 17 Nov 2024
151 points (94.2% liked)

Programmer Humor

32774 readers
445 users here now

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

Rules:

founded 5 years ago
MODERATORS