All Posts

  • Published on
    Don't compare yourselves to others. Live your own unique life and be thankful of being alive.
  • Published on
    Learn about the proper scenarios for using move and forward in C++ functions to return values efficiently. Avoid over-optimization and trust the compilers optimizations.
  • Published on
    Understanding when to use std::move and std::forward in C++ is crucial for efficient programming. The rule of thumb is to use std::move for temporary values (rvalue references) and std::forward for universal references.
  • Published on
    Dive into the world of C++ references! Learn about rvalue references and universal references, what makes them different, and how to use them for better coding.