| Any Type | Basic Types | Object Types | Array Types | Enum Type | Props Type |
AnyType is a representiv for any other type, like
Basic Type, Object Type, Array Type.
#pragma weak // allow undeclared any types
i = 1; // is Any type
i = "asdf"; // Any types can change type
Any j = 4.5; // Any types can also declared explicitelly
|
Any is an alias to the acdk::lang::dmi::DmiObject class.
|