ios.each_codepoint {|c| block } â ios
ios.codepoints {|c| block } â ios
ios.each_codepoint â an_enumerator
ios.codepoints â an_enumerator
ios.codepoints {|c| block } â ios
ios.each_codepoint â an_enumerator
ios.codepoints â an_enumerator
Instance Public methods
Passes the Integer
ordinal of each character in ios,
passing the codepoint as an argument. The stream must be opened for reading
or an IOError
will be raised.
If no block is given, an enumerator is returned instead.
Please login to continue.