Object

Base Object class. All other classes implicitly inherit this.

Members

Functions

opCmp
int opCmp(Object o)

Compare against another object. NOT IMPLEMENTED!

opEquals
bool opEquals(Object o)

Check equivalence againt another object

toHash
size_t toHash()

Compute hash function for Object

toString
string toString()

Convert Object to human readable string

Static functions

factory
Object factory(string classname)

Object factory. NOT IMPLEMENTED!

Meta