Il me manque probablement quelque chose d'évident, mais existe-t-il un moyen d'accéder à l'index / au nombre de l'itération dans un hachage de chaque boucle?
hash = {'three' => 'one', 'four' => 'two', 'one' => 'three'}
hash.each { |key, value|
# any way to know which iteration this is
# (without having to create a count variable)?
}