Class: Groonga::ExpressionBuildable::ExpressionBuilder

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initializeExpressionBuilder

Returns a new instance of ExpressionBuilder.



84
85
86
# File 'lib/groonga/expression-builder.rb', line 84

def initialize
  super()
end

Instance Method Details

#&(other) ⇒ Object



88
89
90
# File 'lib/groonga/expression-builder.rb', line 88

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

#|(other) ⇒ Object



92
93
94
# File 'lib/groonga/expression-builder.rb', line 92

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