Qore Programming Language Reference Manual  0.8.9
 All Classes Namespaces Functions Variables Groups Pages
ql_object.dox.h
1 
3 namespace Qore {
8 
10 
28 any callObjectMethod(object obj, string method, ...);
29 
31 
35 nothing callObjectMethod();
36 
38 
56 any callObjectMethodArgs(object obj, string method, *softlist varg);
57 
59 
63 nothing callObjectMethodArgs();
64 
66 
79 any call_pseudo(any val, string meth, ...);
80 
82 
95 any call_pseudo_args(any val, string meth, *softlist argv);
96 
98 
110 list getMethodList(object obj);
111 
113 
117 nothing getMethodList();
118 
120 };
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...
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