class Bio::GFF::GFF2::Record::Value
Stores GFF2 attribute's value.
Public Class Methods
new(values = [])
click to toggle source
Public Instance Methods
==(other)
click to toggle source
Returns true if other == self. Otherwise, returns false.
# File lib/bio/db/gff.rb, line 351 def ==(other) return false unless other.kind_of?(self.class) or self.kind_of?(other.class) self.values == other.values rescue super(other) end
to_s()
click to toggle source