ฉันมีแฮชหลายชุด @fathers
a_father = { "father" => "Bob", "age" => 40 }
@fathers << a_father
a_father = { "father" => "David", "age" => 32 }
@fathers << a_father
a_father = { "father" => "Batman", "age" => 50 }
@fathers << a_father
ฉันจะค้นหาอาร์เรย์นี้และส่งคืนแฮชที่บล็อกส่งคืนจริงได้อย่างไร
ตัวอย่างเช่น:
@fathers.some_method("age" > 35) #=> array containing the hashes of bob and batman
ขอบคุณ