Qore Programming Language Reference Manual 1.18.1
Loading...
Searching...
No Matches
ql_object.dox.h
1
3namespace Qore {
8
10
33auto callObjectMethod(object obj, string method, ...);
34
36
41
43
61auto callObjectMethodArgs(object obj, string method, *softlist<auto> varg);
62
64
69
71
96auto call_object_method(object obj, string method, ...);
97
99
124auto call_object_method_args(object obj, string method, *softlist<auto> varg);
125
127
140auto call_pseudo(any val, string meth, ...);
141
143
156auto call_pseudo_args(any val, string meth, *softlist<auto> argv);
157
159
184auto call_static_method(string class_name, string method, ...);
185
187
212auto call_static_method_args(string class_name, string method, *softlist<auto> call_args);
213
215
234object create_object(string class_name, ...);
235
237
256object create_object_args(string class_name, *softlist<auto> argv);
257
259
268list getMethodList(object obj);
269
271
276
278
292list<string> get_method_list(object obj);
293
295}
nothing getMethodList()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
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 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.
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< auto > argv)
creates an object from the class name (which can include a namespace path) and optionally any argumen...
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...
nothing callObjectMethodArgs()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
nothing callObjectMethod()
This function variant does nothing at all; it is only included for backwards-compatibility with qore ...
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
auto call_pseudo(any val, string meth,...)
calls a pseudo-method on the given value
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_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< auto > list(...)
Returns a list of the arguments passed at the top level.
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3