Zen
A cross-platform functional programming language
|
Query expression binary operator type. More...
#include <zbl.hpp>
Public Member Functions | |
qbinary (const qexpr &lhs, const z::string &op, const qexpr &rhs) | |
Default constructor. | |
const qexpr & | getLhs () const |
Returns the LHS of the expression. | |
const z::string & | getOp () const |
Returns the operator of the expression. | |
const qexpr & | getRhs () const |
Returns the RHS of the expression. | |
Private Attributes | |
const qexpr & | _lhs |
The LHS expression. | |
const z::string | _op |
The operator. | |
const qexpr & | _rhs |
The RHS expression. |
Query expression binary operator type.
Default constructor.
lhs | LHS of binary expression |
op | The Operator |
rhs | RHS of binary expression |
const qexpr& getLhs | ( | ) | const [inline] |
Returns the LHS of the expression.
const z::string& getOp | ( | ) | const [inline] |
Returns the operator of the expression.
const qexpr& getRhs | ( | ) | const [inline] |
Returns the RHS of the expression.