obj_methodsΒΆ

obj_methods returns an object with methods (member functions) for the given object.

o = obj_methods(obj)

Return Value

o is an object with methods or 0 if the object does not have any methods..

Parameters

obj

obj is the object created with obj_create.

Example

o = obj.methods()
if (o) print o.keys

id-2035095