module ScientificNameClean::MultinomialName7
Public Instance Methods
canonical()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 1103 def canonical a.canonical + " " + b.canonical + " " + c.canonical end
details()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 1115 def details a.details.merge(b.details).merge(c.details) end
hybrid()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 1111 def hybrid b.hybrid rescue false end
pos()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 1107 def pos a.pos.merge(b.pos).merge(c.pos) end
value()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 1099 def value a.value + " " + b.value + " " + c.value end