Created
November 12, 2013 02:53
-
-
Save yancya/7424696 to your computer and use it in GitHub Desktop.
ハッシュの配列の各要素の共通のキーの値の配列に簡単にアクセスするにはどうしたらいいか
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def method_missing(name) | |
Proc.new{|o| o[name]} | |
end | |
hoges = [{hoge: 1, fuga: 2}, {hoge: 3, fuga: 4}] | |
p hoges.map(&fuga) #=> [2, 4] | |
p hoges.map(&hoge).reduce(&:+) #=> 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
許されない