0 points

And no one on his team ever understood his code.

Sometimes being declarative is better than being “smart”

permalink
report
reply
0 points

I’m confused on how this is difficult to understand. Put aside the fact that it’s just a regular operator that… I mean virtually everyone should know, how hard is it to google “what does ?? mean in [language]” which has the added benefit of learning a new operator that can clean up your code?

permalink
report
parent
reply
0 points

Well yeah but imagine you had to do that on most lines of the code? It would become very distracting imho. If you are in a team with people that have a lot experience and or will learn more anyway this is fine. But if you are in a team with not very good programmers which “will never learn” because they have other stuff to do, you should be careful when using code like this. Though I would prefer in the former of course.

permalink
report
parent
reply
0 points

There’s a nice list of this feature by language on the Wikipedia page for anyone interested: https://en.wikipedia.org/wiki/Null_coalescing_operator#Examples_by_languages

permalink
report
reply
0 points

This was my first time actually seeing a Rust example, and I hate it.

permalink
report
parent
reply
0 points

You’ll be happy to hear I’ve updated the example to be not bad

permalink
report
parent
reply
0 points
*

I wanted to ask why it’s bad, what did you change?

Btw. the example function get_default is badly chosen, because unwrap_or_default exists.

permalink
report
parent
reply
0 points

Other languages: if a is null return b.

Rust: here is an array of strings, we are going to parse the array to numbers. If that conversion fails we handle the exception and return the minimum integer value. We then save the result in a new vector. We also print it.

I like rust, but I hate the example too. It’s needlessly complex. Should have just been a.unwrap_or(b).

permalink
report
parent
reply
0 points

Except there’s literally no change in performance as a normal compiler will treat those the same. It just looks nice and trim down the time an experienced dev reads and understands the code by around 200ms.

permalink
report
reply
0 points

My coworker flips his shit every time I include a ternary operator in a PR. He also insists on refactoring any block of code longer than two lines into its own function, even when it’s only used once.

He is not well liked.

permalink
report
reply
0 points

He also insists on refactoring any block of code longer than two lines into its own function

Thanks, uncle Bob.

permalink
report
parent
reply
0 points
*

Ruby:

a || b

(no return as last line is returned implicitly, no semicolon)

EDIT: As pointed out in the comments, this is not strictly equivalent, as it will return b if a is false as well as if it’s nil (these are the only two falsy values in Ruby).

permalink
report
reply
0 points

Python:

return a or b

i like it because it reads like a sentence so it somewhat makes sense

and you can make it more comprehensive if you want to:

return a if a is not None else b

permalink
report
parent
reply
0 points
*

This diverges from the OP code snippets if a has the value False.

permalink
report
parent
reply

Programmer Humor

!programmerhumor@lemmy.ml

Create post

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

Rules:

  • Posts must be relevant to programming, programmers, or computer science.
  • No NSFW content.
  • Jokes must be in good taste. No hate speech, bigotry, etc.

Community stats

  • 6.7K

    Monthly active users

  • 796

    Posts

  • 7.3K

    Comments

Community moderators