this post was submitted on 01 Feb 2024
65 points (91.1% liked)

Programmer Humor

18292 readers
1506 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 

signal-2024-02-01-19-47-41-855

you are viewing a single comment's thread
view the rest of the comments
[–] Schmeckinger 18 points 5 months ago (2 children)

You can't really blame that on rust.

[–] [email protected] 0 points 5 months ago (1 children)

Yeah ngl it's very ugly. But hey as long as it works it's not stupid amirite?

[–] [email protected] 6 points 5 months ago

Rust borrows a lot of it's design from functional programming languages like Haskell, which has its good and bad. You could also choose to implement this behavior iteratively like typical C programs, but that tends to be ugly in other ways.

Personally, I've grown fond of the functional style. You see it in other places too, like the higher order functions in JavaScript. What's good about them in Rust is you still get amazing performance due to zero-cost abstraction. Trying to implement it yourself would likely be slower, so use them any chance you get.