Qore Programming Language Reference Manual  1.0.8
QC_Expression.dox.h
1 
3 namespace Qore {
5 
7 class Expression {
8 
9 public:
11 
15  constructor(Program pgm, string source, string label);
16 
17 public:
19 
21 auto eval();
22 };
23 }
auto eval()
Evaluates the expression and returns any return value.
constructor(Program pgm, string source, string label)
Creates the expression object.
Program objects allow Qore programs to support subprograms with the option to restrict capabilities...
Definition: QC_Program.dox.h:56
Expression objects represent a single executable expression.
Definition: QC_Expression.dox.h:7
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3