This project is closed and read-only.
Actions
Backport #716
closedHash#key
Backport #716:
Hash#key
Status:
Closed
Assignee:
Description
=begin
Ruby 1.9ではHash#indexがdeprecatedになりますが、いきなりdeprecatedになるのは混乱すると思うのでRuby 1.8にも入れておくべきだと思います。
ruby19 result¶
hash = {1=>"one"}
hash.index "one" # => 1 # !> Hash#index is deprecated; use Hash#key
hash.key "one" # => 1
ruby18 result¶
hash = {1=>"one"}
hash.index "one" # => 1
hash.key "one" # =>
~> -:5: undefined method `key' for {1=>"one"}:Hash (NoMethodError)¶
=end
Actions