each_with_key
parent
319f521379
commit
de07d74856
2
blah.cr
2
blah.cr
|
@ -23,7 +23,7 @@ db.each do |car|
|
|||
end
|
||||
|
||||
# Reaching all objects in the db with their key.
|
||||
db.each_with_index do |car,key|
|
||||
db.each_with_key do |car,key|
|
||||
pp! car, key
|
||||
end
|
||||
|
||||
|
|
|
@ -247,12 +247,12 @@ database.delete 0
|
|||
.QE
|
||||
.
|
||||
The function
|
||||
.FUNCTION_CALL each_with_index
|
||||
.FUNCTION_CALL each_with_key
|
||||
lists the entries with their keys.
|
||||
.
|
||||
.QP
|
||||
.SOURCE Ruby ps=10
|
||||
database.each_with_index do |value, key|
|
||||
database.each_with_key do |value, key|
|
||||
puts "#{key}: #{value}"
|
||||
end
|
||||
.SOURCE
|
||||
|
@ -586,7 +586,7 @@ end
|
|||
.QP
|
||||
.SOURCE Ruby ps=10
|
||||
# List all the values in the database with their key
|
||||
database.each_with_index do |value, key|
|
||||
database.each_with_key do |value, key|
|
||||
# ...
|
||||
end
|
||||
.SOURCE
|
||||
|
|
Loading…
Reference in New Issue