Class: Groonga::ExpressionBuildable::ExpressionBuilder
- Inherits:
-
Object
- Object
- Groonga::ExpressionBuildable::ExpressionBuilder
- Defined in:
- lib/groonga/expression-builder.rb
Direct Known Subclasses
BinaryExpressionBuilder, ColumnValueExpressionBuilder, MatchTargetExpressionBuilder, SetExpressionBuilder, SubExpressionBuilder
Instance Method Summary collapse
- #&(other) ⇒ Object
-
#initialize ⇒ ExpressionBuilder
constructor
A new instance of ExpressionBuilder.
- #|(other) ⇒ Object
Constructor Details
#initialize ⇒ ExpressionBuilder
Returns a new instance of ExpressionBuilder.
102 103 104 |
# File 'lib/groonga/expression-builder.rb', line 102 def initialize super() end |
Instance Method Details
#&(other) ⇒ Object
106 107 108 |
# File 'lib/groonga/expression-builder.rb', line 106 def &(other) AndExpressionBuilder.new(self, other) end |
#|(other) ⇒ Object
110 111 112 |
# File 'lib/groonga/expression-builder.rb', line 110 def |(other) OrExpressionBuilder.new(self, other) end |