Object

All D class objects inherit from Object.

Members

Functions

dispose
void dispose()

Override this to capture an explicit delete or an implicit delete via a scoped-instance. Unlike a dtor(), GC references are still intact when this method is invoked

opCmp
int opCmp(Object o)

Compare with another Object obj.

opEquals
equals_t opEquals(Object o)

Returns !=0 if this object does have the same contents as obj.

toHash
hash_t toHash()

Compute hash function for Object.

toString
char[] toString()

Convert Object to a human readable string.

Interfaces

Monitor
interface Monitor
Undocumented in source.

Meta