Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
Pseudo_QC_Callref.dox.h
1
3namespace Qore {
5/***/
6class <callref> : public <value> {
7
8public:
10
21bool callp();
22
23public:
25
29auto exec( ...);
30
31public:
33
48
49public:
51
65bool val();
66};
67}
Methods in this pseudo-class can be executed on call references.
Definition: Pseudo_QC_Callref.dox.h:6
auto exec(...)
Evaluates the code with the arguments given and returns the result.
bool callp()
Returns True because this is a callable type.
int typeCode()
Returns Qore::NT_CALLREF.
bool val()
Returns True.
Methods in this pseudo-class are available to be executed on any value type (even NOTHING); this is t...
Definition: Pseudo_QC_All.dox.h:6
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2