isTypedef abstract method
Checks if this class represents a typedef.
Returns:
truefor type aliases created withtypedeffalsefor regular classes
Example:
typedef IntList = List<int>;
Class<IntList>().isTypedef(); // true
Implementation
bool isTypedef();