-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from hogucc/2024-12-25
add_posts/2024-12-25
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
layout: post | ||
title: 2024-12-25 Ruby3.4からはブロックパラメーターitが利用可能になる | ||
--- | ||
|
||
# Ruby3.4からはブロックパラメーターitが利用可能になる | ||
|
||
Rubyは毎年クリスマスにバージョンがあがる | ||
|
||
今年はRuby3.4がリリースされた。変更点は以下の記事参照。 | ||
https://product.st.inc/entry/2024/12/25/154728 | ||
|
||
コード例もこの記事から引用している。 | ||
|
||
以前からnumbered parmeter(_1)は用意されていたが、ブロックパラメーターにitが追加された。 | ||
|
||
こんなやつ。この記事にも書かれているが、numbered parameterと同様itが指しているものがわかりづらくなるのでワンライナーのブロック限定で使うのが良さそう。 | ||
|
||
``` | ||
ary = ["foo", "bar", "baz"] | ||
p ary.map { it.upcase } | ||
``` |