Tag: Financial Systems
All the articles with the tag "Financial Systems".
-
Mastering C++ reserve(): The Performance Game-Changer You're Probably Not Using Enough
Published:After nearly four decades of writing performance-critical C++ code, I've seen countless developers overlook one of the most impactful optimizations hiding in plain sight: the humble reserve() method.
-
Mastering C++23: The Future of Performance-Critical Programming
Published:With the official ratification of C++23, I've spent the last couple of years exploring what this standard brings to the table for developers like us who care deeply about squeezing every ounce of performance from our code while maintaining readability and safety.
-
Unlocking the Power of Iota in C++23
Published:In C++, the venerable std::iota algorithm has long served this purpose, but with C++20 and C++23 we gained even more powerful, flexible, and performant variants.
-
Smart Pointers in C++23: A Comprehensive Guide
Published:Here, I’ll share my deep dive into std::unique_ptr, std::shared_ptr, and std::weak_ptr in C++23, discussing their design, performance characteristics, thread-safety nuances, and best practices.