class RediSearch::Search::Clauses::Or

Public Instance Methods

where(**condition) click to toggle source
# File lib/redi_search/search/clauses/or.rb, line 9
def where(**condition)
  @term = search.dup.where(**condition)

  search
end

Private Instance Methods

operand() click to toggle source
# File lib/redi_search/search/clauses/or.rb, line 17
def operand
  "|"
end