C++ Insights Tool

C++ Insights is an open-source tool that transforms C++ source code into a representation closer to what compiler sees and generates. It helps understand the underlying details of C++.

Read more

Enum Class

Choose enum class over enum for type safety.

Read more

Theading Pool

  1. Basic threading pool
  2. Advanced threading pool
Read more

Vtable in C++

Also known as virtual function table, dispatch table.

Read more