yieldの履歴
「受け渡す」
「イールド」と読む
the society of mind 3.2
Where does it stop, this process of yielding control to other agencies?
コントロールを他のエージェンシーたちに譲り渡すというプロセスが、エージェンシーからエージェンシーへと伝播していくとしたら、いったいどこで止まるのだろうか。
Rails
class Hoge def fuga yield end end Hoge.fuga{puts 'aaa'}#aaa
Ruby on Rails
app/views/layouts/hoge.rhtml
の中の
<%= yield %>
に
app/views/hoge/fuga.rhtml
の内容が入る。