Sha256: 702a79276aec36f1adaa0e766dd2ecf0813febf0b42ee41323b09bd5197414cd
Contents?: true
Size: 534 Bytes
Versions: 26
Compression:
Stored size: 534 Bytes
Contents
class Range # A thing really should know itself. # This simply returns _self_. # # Note: This does not internally effect the Ruby # interpretor such that it can coerce Range-like # objects into a Range. def to_range self end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCRange < Test::Unit::TestCase def test_to_range a = (0..10) assert_equal( a, a.to_range ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems