Share

Boolean

C++

typedef bool Boolean;

Description

This is a typedef that defines a Boolean datatype using the built-in bool datatype. The values kTrue and kFalse map to true and false, respectively. This typedef is used when a native Boolean type is available; otherwise an int is used as Boolean.

typedef bool Boolean;

Links

Adesk

Was this information helpful?