Class: Groonga::ExpressionBuildable::ExpressionBuilder

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

Instance Method Summary collapse

Constructor Details

#initializeExpressionBuilder

Returns a new instance of ExpressionBuilder.



103
104
105
# File 'lib/groonga/expression-builder.rb', line 103

def initialize
  super()
end

Instance Method Details

#&(other) ⇒ Object



107
108
109
# File 'lib/groonga/expression-builder.rb', line 107

def &(other)
  AndExpressionBuilder.new(self, other)
end

#|(other) ⇒ Object



111
112
113
# File 'lib/groonga/expression-builder.rb', line 111

def |(other)
  OrExpressionBuilder.new(self, other)
end