Qore Programming Language Reference Manual
0.8.11.1
|
Functions | |
any | Qore::callObjectMethod (object obj, string method,...) |
Calls a method of an object, passing the remainder of the arguments to the function as arguments to the method. More... | |
nothing | Qore::callObjectMethod () |
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments. More... | |
any | Qore::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. More... | |
nothing | Qore::callObjectMethodArgs () |
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments. More... | |
any | Qore::call_pseudo (any val, string meth,...) |
calls a pseudo-method on the given value More... | |
any | Qore::call_pseudo_args (any val, string meth, *softlist argv) |
calls a pseudo-method on the given value with arguments given as a list More... | |
list | Qore::getMethodList (object obj) |
Returns a list of strings of the names of the methods of the class of the object passed as a parameter. More... | |
nothing | Qore::getMethodList () |
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments. More... | |
Object functions
any Qore::call_pseudo | ( | any | val, |
string | meth, | ||
... | |||
) |
calls a pseudo-method on the given value
val | the value to call the pseudo-method on |
meth | the string method name of the pseudo-method to call |
... | any other arguments to the method |
any Qore::call_pseudo_args | ( | any | val, |
string | meth, | ||
*softlist | argv | ||
) |
calls a pseudo-method on the given value with arguments given as a list
val | the value to call the pseudo-method on |
meth | the string method name of the pseudo-method to call |
argv | any other arguments to the method |
any Qore::callObjectMethod | ( | object | obj, |
string | method, | ||
... | |||
) |
Calls a method of an object, passing the remainder of the arguments to the function as arguments to the method.
obj | the object to use for the call |
method | the method to call |
... | any additional arguments to the method |
METHOD-DOES-NOT-EXIST | The named method does not exist in this class |
ILLEGAL-EXPLICIT-METHOD-CALL | The named method may not be called explicitly |
METHOD-IS-PRIVATE | The named method is private and therefore can only be called within the class |
BASE-CLASS-IS-PRIVATE | The named method is a member of a privately inherited base class |
nothing Qore::callObjectMethod | ( | ) |
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.
any Qore::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.
obj | the object to use for the call |
method | the method to call |
varg | any additional arguments to the method |
METHOD-DOES-NOT-EXIST | The named method does not exist in this class |
ILLEGAL-EXPLICIT-METHOD-CALL | The named method may not be called explicitly |
METHOD-IS-PRIVATE | The named method is private and therefore can only be called within the class |
BASE-CLASS-IS-PRIVATE | The named method is a member of a privately inherited base class |
nothing Qore::callObjectMethodArgs | ( | ) |
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.
list Qore::getMethodList | ( | object | obj | ) |
Returns a list of strings of the names of the methods of the class of the object passed as a parameter.
obj | an object of the class to get the method list from |
nothing Qore::getMethodList | ( | ) |
This function variant does nothing at all; it is only included for backwards-compatibility with qore prior to version 0.8.0 for functions that would ignore type errors in arguments.