...

/

Introduction

Introduction

The type traits library helps us optimize our code. This section will cover the library in depth.

The type traits library enables you to check, compare and modify types at compile time. So, there is no overhead on the runtime of your program. There are two reasons for using the type traits library: Optimization and Correctness. ...