Class: OpenEHR::AQL::Model::AndExpr
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::AndExpr
- Defined in:
- lib/openehr/aql/model/where_clause.rb
Overview
whereExpr : ... | whereExpr AND whereExpr | ... ;
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Instance Method Summary collapse
-
#initialize(left:, right:) ⇒ AndExpr
constructor
A new instance of AndExpr.
Constructor Details
#initialize(left:, right:) ⇒ AndExpr
Returns a new instance of AndExpr.
18 19 20 21 22 |
# File 'lib/openehr/aql/model/where_clause.rb', line 18 def initialize(left:, right:) @left = left @right = right freeze end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
16 17 18 |
# File 'lib/openehr/aql/model/where_clause.rb', line 16 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
16 17 18 |
# File 'lib/openehr/aql/model/where_clause.rb', line 16 def right @right end |