list getMethodList(object obj)
Returns a list of strings of the names of the methods of the class of the object passed as a paramete...
object create_object(string class_name,...)
creates an object from the class name (which can include a namespace path) and optionally any argumen...
object create_object_args(string class_name, *softlist argv)
creates an object from the class name (which can include a namespace path) and optionally any argumen...
list get_method_list(object obj)
Returns a list of strings of the names of the methods of the class of the object passed as a paramete...
any call_pseudo_args(any val, string meth, *softlist argv)
calls a pseudo-method on the given value with arguments given as a list
any callObjectMethodArgs(object obj, string method, *softlist varg)
Calls a method of an object, using the optional third argument as the argument list to the method...
list list(...)
Returns a list of the arguments passed at the top level.
any callObjectMethod(object obj, string method,...)
Calls a method of an object, passing the remainder of the arguments to the function as arguments to t...
any call_pseudo(any val, string meth,...)
calls a pseudo-method on the given value
any call_object_method(object obj, string method,...)
Calls a method of an object, passing the remainder of the arguments to the function as arguments to t...
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2
any call_object_method_args(object obj, string method, *softlist varg)
Calls a method of an object, using the optional third argument as the argument list to the method...