Qore Programming Language Reference Manual  1.0.8
ql_object.dox.h
1 
3 namespace Qore {
7 
9 
33 auto callObjectMethod(object obj, string method, ...);
34 
36 
40 nothing callObjectMethod();
41 
43 
61 auto callObjectMethodArgs(object obj, string method, *softlist<auto> varg);
62 
64 
68 nothing callObjectMethodArgs();
69 
71 
96 auto call_object_method(object obj, string method, ...);
97 
99 
124 auto call_object_method_args(object obj, string method, *softlist<auto> varg);
125 
127 
140 auto call_pseudo(any val, string meth, ...);
141 
143 
156 auto call_pseudo_args(any val, string meth, *softlist<auto> argv);
157 
159 
184 auto call_static_method(string class_name, string method, ...);
185 
187 
212 auto call_static_method_args(string class_name, string method, *softlist<auto> call_args);
213 
215 
234 object create_object(string class_name, ...);
235 
237 
256 object create_object_args(string class_name, *softlist<auto> argv);
257 
259 
268 list getMethodList(object obj);
269 
271 
275 nothing getMethodList();
276 
278 
292 list<string> get_method_list(object obj);
293 
295 }
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...