10.7 — Typedefs and type aliases
Type aliases In C++, is a keyword that creates an alias for an existing data type. To create such a type alias, we use the using keyword, followed by a name for the type alias, followed by an equals sign and an existing data type. For example: using Distance = …