@head @module std @title Class std::Object @index Object
Object is the top class in the Alore class hierarchy, and all other classes are either directly or indirectly derived from it. Object defines an empty constructor, and the only operation that it supports is identity-based equality comparison using == or !=.
A class that does not define a superclass implicitly inherits from Object: @example class A end A() is Object -- True A() == A() -- False (== operation inherited from Object) @end @class Object() @desc Construct an instance of Object. @end