2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【Ruby】ナンバードパラメータ

Last updated at Posted at 2024-11-05

どうもこんにちは。

今回は、Ruby Gold ver3から出題範囲になったナンバードパラメータについて勉強したので、備忘録として残します。

今回はメモ程度です。

ナンバードパラメータとは

ナンバードパラメータとは、eachmapで使用するブロック引数を使用する代わりに使用することでコードをシンプルに書くことができるパラメータです。

従来のループ文

numbers = [1, 2, 3, 4, 5]
doubled = numbers.map { |number| number * 2 }
puts doubled

# => [2, 4, 6, 8, 10]

ナンバードパラメータを使用した場合

numbers = [1, 2, 3, 4, 5]
doubled = numbers.map { _1 * 2 }
puts doubled

# => [2, 4, 6, 8, 10]

以上

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?