Type.methods
methods
Group: Metadata
Documentation
Returns a vector of method names that can be invoked on instances of this type.
Examples
All instance methods to invoke on Integer
as
(v:Integer) v.method_name...
:
Meta.meta Integer . methods
All static methods to invoke on Integer
as
Integer.method_name...
:
Meta.meta (Meta.type_of Integer) . methods
Remarks
Static Methods
To obtain list of static methods on a given type
use Meta.type_of
.