Enumeration representing possible postfix types used in the module.
You can find more information in comments below.
enum class PostfixType
{
None, // No postfix
L, // long
LL, // long long
F, // float
Z, // size
U, // unsigned
UL, // unsigned long
ULL, // unsigned long long
UZ, // unsigned size
Custom // Custom postfix (no one from above)
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Core/PostfixType.h |