Utility Classes :: Any
Overview
The Any utility class is used to specify that you simply do not care about the type of a given object.
The following signature allows the function to return absolutely anything it wants.
@returns(Any())
Unless you're absolutely, positively, 100% sure that you really, really, honestly don't care about the type of an object, don't use this class.
Details
The Any() constructor accepts only the self parameter.
Any instances will always compare equal (==) to one another.