class Bio::Sequence::AA

Public Instance Methods

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