| Class | Bio::GFF::GFF2::Record::Value |
| In: |
lib/bio/db/gff.rb
|
| Parent: | Object |
Returns true if other == self. Otherwise, returns false.
# File lib/bio/db/gff.rb, line 351
351: def ==(other)
352: return false unless other.kind_of?(self.class) or
353: self.kind_of?(other.class)
354: self.values == other.values rescue super(other)
355: end