Sha256: 2a85a3dae8533cf4d4d14ab9374612dabd0f9f5ca3491d1297fc6b975c820b90
Contents?: true
Size: 761 Bytes
Versions: 73
Compression:
Stored size: 761 Bytes
Contents
unless IO.method_defined? :each_char require 'enumerator' class IO def each_char return to_enum(:each_char) unless block_given? if $KCODE == "UTF-8" lookup = 7.downto(4) while c = read(1) do n = c[0] leftmost_zero_bit = lookup.find{|i| n[i].zero? } case leftmost_zero_bit when 7 # ASCII yield c when 6 # UTF 8 complementary characters next # Encoding error, ignore else more = read(6-leftmost_zero_bit) break unless more yield c+more end end else while s = read(1) yield s end end self end alias_method :chars, :each_char end end
Version data entries
73 entries across 73 versions & 5 rubygems