Class: Arel::Nodes::TSRank

Inherits:
Node
  • Object
show all
Defined in:
lib/arel/nodes/ts_rank.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tsvector, tsquery) ⇒ TSRank

Returns a new instance of TSRank.



9
10
11
12
# File 'lib/arel/nodes/ts_rank.rb', line 9

def initialize(tsvector, tsquery)
  @tsvector = tsvector
  @tsquery = tsquery
end

Instance Attribute Details

#tsqueryObject (readonly)

Returns the value of attribute tsquery.



7
8
9
# File 'lib/arel/nodes/ts_rank.rb', line 7

def tsquery
  @tsquery
end

#tsvectorObject (readonly)

Returns the value of attribute tsvector.



7
8
9
# File 'lib/arel/nodes/ts_rank.rb', line 7

def tsvector
  @tsvector
end

Instance Method Details

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


18
19
20
21
22
# File 'lib/arel/nodes/ts_rank.rb', line 18

def eql? other
  self.class == other.class &&
  self.tsvector == other.tsvector &&
  self.tsquery == other.tsquery
end

#hashObject



14
15
16
# File 'lib/arel/nodes/ts_rank.rb', line 14

def hash
  [@tsvector, @tsquery].hash
end