Class: Groonga::ExpressionBuildable::ExpressionBuilder
- Inherits:
-
Object
- Object
- Groonga::ExpressionBuildable::ExpressionBuilder
show all
- Defined in:
- lib/groonga/expression-builder.rb
Instance Method Summary
collapse
Constructor Details
102
103
104
|
# File 'lib/groonga/expression-builder.rb', line 102
def initialize
super()
end
|
Instance Method Details
106
107
108
|
# File 'lib/groonga/expression-builder.rb', line 106
def &(other)
AndExpressionBuilder.new(self, other)
end
|
110
111
112
|
# File 'lib/groonga/expression-builder.rb', line 110
def |(other)
OrExpressionBuilder.new(self, other)
end
|