module core.object

Root object for classes.

Code Map

//! Root object for classes.
module core.object;


//! Root object for all classes.
class Object
{
public:
	this() { }
	fn toString() string { }
}
class Object

Root object for all classes.

If a class does not inherit explicitly from another class, then the compiler makes it inherit from this.