Sha256: 200c2229d56a328fba40a2a3c034d6e506c9025c031c3b8defcc9e73eb5e3804
Contents?: true
Size: 431 Bytes
Versions: 26
Compression:
Stored size: 431 Bytes
Contents
class String # Return a random string index. # # "Ruby rules".rand_index #=> 3 # def rand_index rand( size ) end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_rand_index 10.times { assert( (0..2).include?( 'abc'.rand_index ) ) } end end =end
Version data entries
26 entries across 26 versions & 1 rubygems