エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Ruby 3.2 - Proc - tmtms のメモ
Ruby 3.2 アドベントカレンダーの20日目の記事です。 qiita.com Proc Proc#dup が元のオブジェクトと同... Ruby 3.2 アドベントカレンダーの20日目の記事です。 qiita.com Proc Proc#dup が元のオブジェクトと同じクラスのオブジェクトを返す Bug #17545: Calling dup on a subclass of Proc returns a Proc and not the subclass - Ruby master - Ruby Issue Tracking System Ruby 1.9 以降、Proc のサブクラスを dup するとサブクラスではなく Proc オブジェクトが返ってたのが、ちゃんとサブクラスオブジェクトが返るようになった。 class Hoge < Proc def inspect "instance of Hoge" end end pp Hoge.new{}.dup #=> <instance of Hoge> # Ruby 3.
2022/12/20 リンク