Method: Bio::GFF::GFF2::MetaData#==
- Defined in:
- lib/bio/db/gff.rb
#==(other) ⇒ Object
Returns true if self == other. Otherwise, returns false.
796 797 798 799 800 801 802 803 804 |
# File 'lib/bio/db/gff.rb', line 796 def ==(other) if self.class == other.class and self.directive == other.directive and self.data == other.data then true else false end end |