Project

General

Profile

Actions

Backport #716

closed

Hash#key

Added by rubikitch (rubikitch .) over 15 years ago. Updated about 13 years ago.

Status:
Closed
[ruby-dev:37028]

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

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0