Skip to content

Instantly share code, notes, and snippets.

@tochi
Created November 28, 2021 07:51
Show Gist options
  • Select an option

  • Save tochi/8d680f6a75b3c40f7c815346aa3005a6 to your computer and use it in GitHub Desktop.

Select an option

Save tochi/8d680f6a75b3c40f7c815346aa3005a6 to your computer and use it in GitHub Desktop.
records.map do |record|
case record.size
when [y]
Date.new(y, 1, 1)
when [y, m]
Date.new(y, m, 1)
when [y, m, d]
Date.new(y, m, d)
end
end
# 「プロを目指す人のためのRuby入門 <改訂2版> 第11章 パターンマッチを理解する」から引用
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment