they're also getting rich on Twitter every time people quote their retarded takes
How? Does Twitter actually directly monetize posts now? And if so, how have these two faggots not been demonetized by now given Musk owns Twitter?
He's a rust user
View attachment 8914814
Tranny confirmed?
lol any faggot who complains about "template metaprogramming in C++" automatically outs himself as a worthless hack who can't actually write software competently or comprehend non-trivial computer science constructs.
If you're hiring a systems programmer (or even a lowly game developer who's going to be doing engine work), ask them to explain SFINAE (and if it's not an in-person interview, time their response and watch closely for signs they're looking it up), and why it might be beneficial to perform compile-time computations and branching. Literally
any competent programmer can answer those questions quickly and reasonably well even if they've never actually dabbled in it.
It's not actually "hard" -- it's just proof that whoever's shitting on C++ has never done anything interesting with it. Standard procedure for Rusties, of course. Particularly because among other things it can help guarantee that blessed "type safety" they constantly brag about Rust having and C++ lacking, and with zero runtime cost.
With template metaprogramming, you can get fun stuff like duck typing, static polymorphism (at no run-time cost), tag dispatching, and a favorite for math geeks -- expression templates, which (among other things) lets you do fancy matrix computations without creating unnecessary temporary values at runtime by describing your operations as templates, allowing the compiler to write the underlying matrix functions (optimized) for you.
There's a ton more you can do with it. Rusties always just treat C++ templates as "copy/paste for repetitive code" without realizing you can use templates to make the compiler write smarter code for you.