doctree icon indicating copy to clipboard operation
doctree copied to clipboard

deconstruct と deconstruct keys についての説明を追加

Open sanfrecce-osaka opened this issue 8 months ago • 0 comments

各クラスの deconstruct と deconstruct_keys の説明を追加しました

  • Struct#deconstruct
    • https://docs.ruby-lang.org/en/3.3/Struct.html#method-i-deconstruct
    • https://github.com/ruby/ruby/commit/9c9db64d7e9058dc6fc7ead3791b259685798806
  • Struct#deconstruct_keys
    • https://docs.ruby-lang.org/en/3.3/Struct.html#method-i-deconstruct_keys
    • https://github.com/ruby/ruby/commit/d4da74ea786da7906fdb85e593593a9c6c11fe96
  • MatchData#deconstruct
    • https://docs.ruby-lang.org/en/3.3/MatchData.html#method-i-deconstruct
    • https://github.com/ruby/ruby/commit/4954c9fc0f9d06aa4e3e8deb33b41f3fae294adc
  • MatchData#deconstruct_keys
    • https://docs.ruby-lang.org/en/3.3/MatchData.html#method-i-deconstruct
    • https://github.com/ruby/ruby/commit/4954c9fc0f9d06aa4e3e8deb33b41f3fae294adc
  • Time#deconstruct_keys
    • https://docs.ruby-lang.org/en/3.3/Time.html#method-i-deconstruct_keys
    • https://github.com/ruby/ruby/commit/eaf2b6c4396ff19921cbc75a394d7a752aaab4ef
  • Date#deconstruct_keys
    • https://docs.ruby-lang.org/en/3.3/Date.html#method-i-deconstruct_keys
    • https://github.com/ruby/ruby/commit/1859784422ca7f19710bbfb1b12b46fdd8ecf3cb
  • DateTime#deconstruct_keys
    • https://docs.ruby-lang.org/en/3.3/DateTime.html#method-i-deconstruct_keys
    • https://github.com/ruby/ruby/commit/1859784422ca7f19710bbfb1b12b46fdd8ecf3cb
  • CSV::Row#deconstruct
    • https://docs.ruby-lang.org/en/3.3/CSV/Row.html#method-i-deconstruct
    • https://github.com/ruby/csv/commit/a01c8f2e5a0c74bc40c04a03df2bac7064193430
    • https://github.com/ruby/ruby/blob/v3_3_2/doc/NEWS/NEWS-3.1.0.md
  • CSV::Row#deconstruct_keys
    • https://docs.ruby-lang.org/en/3.3/CSV/Row.html#method-i-deconstruct
    • https://github.com/ruby/csv/commit/a01c8f2e5a0c74bc40c04a03df2bac7064193430
    • https://github.com/ruby/ruby/blob/v3_3_2/doc/NEWS/NEWS-3.1.0.md

またパターンマッチのドキュメントを参照できるように @see で 非プリミティブなオブジェクトのマッチ: deconstruct メソッドと deconstruct_keys メソッド へのリンクを全ての deconstruct・deconstruct_keys の説明に追加しました

sanfrecce-osaka avatar Jun 11 '24 13:06 sanfrecce-osaka