Sha256: c2f69b9289064c476dca58f949e2455ce85850600383709386c00eeb08a31c87
Contents?: true
Size: 476 Bytes
Versions: 26
Compression:
Stored size: 476 Bytes
Contents
class String # Iterates through each character. def each_char # :yield: split(//).each { |c| yield( c ) } end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_each_char a = [] i = "this" i.each_char{ |w| a << w } assert_equal( ['t', 'h', 'i', 's'], a ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems