2006-08-19から1日間の記事一覧

yet another with()

Mastering Cocoa with Ruby | RubyCocoa Resourcesをみてたらこんなのを発見。 def with(x) yield x if block_given?; x end if not defined? withブロックを評価した後にxを返すところがポイント。@y = with(ClassWithLongName.new(args)) do |o| 〜 end て…