class AttrSearchableGrammar::Nodes::MatchesFulltext

Public Instance Methods

collection() click to toggle source
# File lib/attr_searchable_grammar/nodes.rb, line 106
def collection
  left
end
finalize!() click to toggle source
# File lib/attr_searchable_grammar/nodes.rb, line 102
def finalize!
  FulltextExpression.new collection, self
end
fulltext?() click to toggle source
# File lib/attr_searchable_grammar/nodes.rb, line 98
def fulltext?
  true
end
not() click to toggle source
# File lib/attr_searchable_grammar/nodes.rb, line 94
def not
  MatchesFulltextNot.new left, right
end