hash Statement | Name | Documentation | Example Count | Options |
---|---|---|---|---|
b = a.values | Hash#values | 1 | ||
b = a[K] | 0 | |||
b = Hash[*a] | Hash#[] | 0 | ||
c = a.value?(b) | Hash#value? | http://ruby-doc.org/core-2.4.2/Hash.html#method-i-values_at | 0 | |
a.each_value { |b| } | Hash#each_value | 0 | ||
c = a.merge b | Hash#merge | http://ruby-doc.org/core-2.4.0/Hash.html#method-i-merge | 0 | |
c = a < b | Hash#< | http://ruby-doc.org/core-2.4.0/Hash.html#method-i-3C | 0 | |
c = a.values_at( *b ) | Hash#values_at | http://ruby-doc.org/core-2.1.4/Hash.html#method-i-values | 0 | |
c = a == b | Hash#== | 0 | ||
c = a.fetch(b) | Hash#fetch | http://ruby-doc.org/core-2.5.0/Hash.html#method-i-fetch | 0 | |
d = a.fetch(b,c) | Hash#fetch | http://ruby-doc.org/core-2.5.0/Hash.html#method-i-fetch | 0 |
Statement | Name | Documentation | Example Count | Options |
---|---|---|---|---|
b = Math.sqrt a | 0 |