#cpp
Read more stories on Hashnode
Articles with this tag
Lambda functions are just syntactic sugar for anonymous functors. ยท Functors A functor is pretty much just a class which defines the operator(). That...
Ever wondered how to spawn threads in c++ ? How to create promises/ async functions in c++ ? ยท Concurrency in modern C++ refers to the ability to perform...
Building the problem Suppose you have an abstraction class Shape and a concrete class Circle We want to add rendering functionality to our...
Understanding the Problem Ordinary code statements are perishable, for example you cannot undo a field/property assignment you cannot directly take...
Creational Design Patterns are a set of design patterns that provide ways to create objects while abstracting the instantiation process. They include...