2015-07-01から1日間の記事一覧

Ruby の yield

yield が今ひとつわからなくてぐぐっていたら、良記事を発見。 Ruby の yield って結局なんなの? - YNoteそれでも yield は複雑。再帰させるとむずかしい。例えば class A def initialize @c = 1 end def each yield(@c) @c += 1 self.each {|x| print "-- …