Method: Bio::PDB#each

Defined in:
lib/bio/db/pdb/pdb.rb

#eachObject Also known as: each_model

Iterates over each model. Iterates over each of the models in the structure. Returns self.



1623
1624
1625
1626
# File 'lib/bio/db/pdb/pdb.rb', line 1623

def each
  @models.each{ |model| yield model }
  self
end