DEBSOURCES
Skip Quicknav
sources / ruby-rr / 1.2.0-1 / lib / rr / core_ext / range.rb
12345678
class Range def wildcard_match?(other) self == other || (other.is_a?(Numeric) && include?(other)) end alias_method :eql, :== end