Method: Fauna::QueryV#==
- Defined in:
- lib/fauna/objects.rb
#==(other) ⇒ Object Also known as: eql?
Returns true if other is a QueryV and contains the same value.
158 159 160 161 |
# File 'lib/fauna/objects.rb', line 158 def ==(other) return false unless other.is_a? QueryV value == other.value end |