1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Elaborate with Range#include?.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-12-11 11:09:02 +00:00
parent e5f1572583
commit 566e7da773

View file

@ -135,7 +135,10 @@ Compatible
o Numeric#fdiv
* Range
o Range#cover?
o Range#include?
o Range#include? iterates over elements and compares the
given value with each element unless the range is numeric.
Use Range#cover? for the old behavior, i.e. comparison
with boundary values.
o Range#min, Range#max
* Regexp
o Regexp#=== matches symbols