Posts tagged with 'til'

TIL about C++ initializer lists and how it is (usually) more performant than standard initialization. Example: class Account { private: std::string number; std::string full_name; float balance; public: // Standard initialization ... read more →