Method: RIO::RecType::Bytes::Input#each_rec_

Defined in:
lib/rio/rectype.rb

#each_rec_(&block) ⇒ Object



71
72
73
74
75
76
77
78
# File 'lib/rio/rectype.rb', line 71

def each_rec_(&block) 
  #p callstr('each_rec_ (EachIter::Bytes)')
  #        p 'each_rec_ => each_line'
  self.ior.each_bytes(cx['bytes_n']) { |b|
    yield b
  }
  self
end