Method: HTML5::EncodingBytes#each
- Defined in:
- lib/html5/inputstream.rb
#each ⇒ Object
426 427 428 429 430 431 432 |
# File 'lib/html5/inputstream.rb', line 426 def each while @position < length @position += 1 yield self[@position] end rescue EOF end |