Class: Groonga::ExpressionBuildable::ExpressionBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga/expression-builder.rb

Instance Method Summary collapse

Constructor Details

#initializeExpressionBuilder



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