Qore Programming Language Reference Manual 2.1.1
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
61string uniqueHash();
62
63public:
65
79bool val();
80};
81}
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.
string uniqueHash()
Return a unique string for the call reference or closure independent of the target.
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