Blog Posts

Recent posts

C++ - constint

less than 1 minute read

C++20 introduced the constinit which will initialize the value at compile time but still you can modify it at runtime

C++ - decltype example

less than 1 minute read

The following code is trying to make a reference to avoid the copy 1 auto& element = *pos;