Qore Programming Language Reference Manual  0.9.10
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 }
Qore::Expression::constructor
constructor(Program pgm, string source, string label)
Creates the expression object.
Qore::Expression
Expression objects represent a single executable expression.
Definition: QC_Expression.dox.h:7
Qore::Expression::eval
auto eval()
Evaluates the expression and returns any return value.
Qore::Program
Program objects allow Qore programs to support subprograms with the option to restrict capabilities,...
Definition: QC_Program.dox.h:56
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3