auto call_pseudo_args(any val, string meth, *softlist< auto > argv)
calls a pseudo-method on the given value with arguments given as a list
object create_object_args(string class_name, *softlist< auto > argv)
creates an object from the class name (which can include a namespace path) and optionally any argumen...
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...
list< auto > list(...)
Returns a list of the arguments passed at the top level.
auto call_object_method_args(object obj, string method, *softlist< auto > varg)
Calls a method of an object, using the optional third argument as the argument list to the method...
auto callObjectMethodArgs(object obj, string method, *softlist< auto > varg)
Calls a method of an object, using the optional third argument as the argument list to the method...
auto callObjectMethod(object obj, string method,...)
Calls a method of an object, passing the remainder of the arguments to the function as arguments to t...
auto call_static_method_args(string class_name, string method, *softlist< auto > call_args)
Calls a static method of an object, passing the arguments to the function as arguments to the method...
list< string > 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...
auto call_pseudo(any val, string meth,...)
calls a pseudo-method on the given value
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
auto 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...
auto call_static_method(string class_name, string method,...)
Calls a static method of an object, passing the arguments to the function as arguments to the method...