Comment by yieldcrv

Comment by yieldcrv 19 hours ago

3 replies

Never knew Rust could be that readable. Makes me think other Rust engineers are stuck in a masochistic ego driven contest, which would explain everything else I've encountered about the Rust community and recruiting on that side.

GardenLetter27 18 hours ago

Most Rust code looks like this - only generic library code goes crazy with all the generics and lifetimes, due to the need to avoid unnecessary mallocs and also provide a flexible API to users.

But most people aren't writing libraries.

  • cmrdporcupine 14 hours ago

    Don't underestimate what some programmers trying to prove their cleverness (or just trying to have fun) can do if left unchecked. I think most Rust code does indeed look like this but I've seen plenty of projects that go crazy with lifetimes and generics juggling where they don't have to.

jmaker 19 hours ago

Not sure what you’re alluding to but that’s just ordinary Rust without performance or async IO concerns.