class Bio::Sequence::NA

Public Instance Methods

each() { |c| ... } click to toggle source
# File lib/bio-alignment/bioruby.rb, line 6
def each
  to_s.each_char do | c | 
    yield c
  end
end