I’ll be honest, I’m just here for the memes.

  • 0 Posts
  • 15 Comments
Joined 10 months ago
cake
Cake day: October 27th, 2023

help-circle













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