我知道<<
運營商用於appending an object to a collection
以及string
。<<操作符對Ruby方法有什麼作用?
<<
運算符在下面的代碼片段中做了什麼?
module TriangleBox
def available_width
height + 25
end
end
Prawn::Text::Box.extensions << TriangleBox
我發現它在蝦寶石examples頁面。