@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
이 배열을 검색하고 블록이 true를 반환하는 해시 배열을 어떻게 반환합니까?
예를 들면 다음과 같습니다.
@fathers.some_method("age" > 35) #=> array containing the hashes of bob and batman
감사.