this post was submitted on 04 Oct 2021
0 points (NaN% liked)

Programmer Humor

32042 readers
1229 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
[–] dragnucs@lemmy.ml 1 points 3 years ago (1 children)

While it is practical and works, it is not an operator by itself. It a combination of two, the unary decrementation and greater than comparator.

Read it as i-- > value.

[–] Ephera@lemmy.ml 0 points 3 years ago (1 children)

Honestly, I'm not sure which I think is worse. Having an explicit down-to operator or being able to combine operators in a way that confuses experienced programmers.

[–] miguel@lemmy.ml 0 points 3 years ago* (last edited 3 years ago) (1 children)

This kind of combined operators are quite common in the competitive programming world, where the speed of coding is more important than readable.

[–] Ephera@lemmy.ml 1 points 3 years ago (1 children)

Yeah, still horrid for real-world programming, though, where readability is ten times as important as how quickly you can type it out.

[–] tmpod 1 points 2 years ago

I'd argue the problem here is more the unary (in/de)crement operator. It isn't really necessary and most of the time it doesn't make stuff more readable.