Qore Programming Language Reference Manual  0.8.13.5
 All Classes Namespaces Functions Variables Groups Pages
ql_object.dox.h
1 
3 namespace Qore {
8 
10 
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 
91 auto call_object_method(object obj, string method, ...);
92 
94 
114 auto call_object_method_args(object obj, string method, *softlist<auto> varg);
115 
117 
130 auto call_pseudo(any val, string meth, ...);
131 
133 
146 auto call_pseudo_args(any val, string meth, *softlist<auto> argv);
147 
149 
168 object create_object(string class_name, ...);
169 
171 
190 object create_object_args(string class_name, *softlist<auto> argv);
191 
193 
202 list getMethodList(object obj);
203 
205 
209 nothing getMethodList();
210 
212 
226 list get_method_list(object obj);
227 
229 };
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 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...
list list(...)
Returns an untyped 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_pseudo(any val, string meth,...)
calls a pseudo-method on the given value
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...