Tôi có một mảng băm, @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
Làm thế nào tôi có thể tìm kiếm mảng này và trả về một mảng băm mà một khối trả về đúng?
Ví dụ:
@fathers.some_method("age" > 35) #=> array containing the hashes of bob and batman
Cảm ơn.