this post was submitted on 08 Dec 2023
1 points (100.0% liked)

Programmer Humor

32373 readers
560 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
[–] zero_gravitas@aussie.zone 0 points 11 months ago (1 children)

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

[–] meliaesc@lemmy.world 0 points 11 months ago (2 children)

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

[–] xor@lemmy.blahaj.zone 0 points 11 months ago (1 children)

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

[–] Username@feddit.de 0 points 11 months ago* (last edited 11 months ago) (1 children)

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.

[–] xor@lemmy.blahaj.zone 0 points 11 months ago (1 children)

The original example was doing the unwrap_within an iterator doing some string parsing, so there was a lot of unrelated boilerplate around the actual unwrapping that made it really unclear, as well as usual unwrap_or_else to produce a constant value

Ehhh, I was more using get_default as a placeholder for some function, as opposed to representing Default::default for the inner type specifically. I think it should be alright since only people familiar with rust would know about the default trait anyway. I did consider adding an unwrap_or_default example, but thought it was getting a bit off topic at that point.

[–] Username@feddit.de 0 points 11 months ago

Yeah I get it, it was just something I noticed. A pedantic lint, you could say.

[–] Flipper@feddit.de 0 points 11 months ago

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).