Fixed Width Integer Types

This section presents the fixed width integer type aliases of the ATL.

Exact Width Types

This section describes signed and unsigned integer type that match exactly the specified width.

Signed Integer Types

using int8_t = implementation_defined

A signed integer type that is exactly 8 bit wide

Since
1.0.0

using int16_t = implementation_defined

A signed integer type that is exactly 16 bit wide

Since
1.0.0

using int32_t = implementation_defined

A signed integer type that is exactly 32 bit wide

Since
1.0.0

using int64_t = implementation_defined

A signed integer type that is exactly 64 bit wide

Since
1.0.0

Unsigned Integer Types

using uint8_t = implementation_defined

An unsigned integer type that is exactly 8 bit wide

Since
1.0.0

using uint16_t = implementation_defined

An unsigned integer type that is exactly 16 bit wide

Since
1.0.0

using uint32_t = implementation_defined

An unsigned integer type that is exactly 32 bit wide

Since
1.0.0

using uint64_t = implementation_defined

An unsigned integer type that is exactly 64 bit wide

Since
1.0.0