Sha256: 77f215d6b391adf2baa434f08fae0d1836cb42aa2dd2f2b733af16d099ed8a23
Contents?: true
Size: 230 Bytes
Versions: 13
Compression:
Stored size: 230 Bytes
Contents
class Range # Compare two ranges and see if they overlap eachother # (1..5).overlaps?(4..6) # => true # (1..5).overlaps?(7..9) # => false def overlaps?(other) include?(other.first) || other.include?(first) end end
Version data entries
13 entries across 13 versions & 3 rubygems