ごとけんです
In message "[ruby-list:28347] Re: Cast"
on 01/02/27, "K.Kosako" <kosako / sofnec.co.jp> writes:
>以下のようなことができればよいのでしょうか?
わーい、どうもです。いま追っかけをやってないのでパッチを試せ
ませんが、つぎのことも試してもらえますか?
KLASS = {}
def a(klass) KLASS[klass] ||= Class.new(klass) end
class a(Array)
def x
self[0]
end
end
y = a(Array)[1,2,3]
p [y.class, y.x] # 期待される出力例: [#<Class 0lxad5f0>, 1]
-- Gotoken