Version: v0.7.1 - Beta.  We welcome contributors & feedback.

Object.zGetMethods

zGetMethods() -> list

Description

Return a list of all methods for this object.

class MyClass {

    fn myMethod {
        ...
    }

    fn myOtherMethod {
        ...
    }
}

$object = MyClass()

$object.zGetMethods()
//= ['myMethod', 'myOtherMethod']

See Also