LoginSignup
7
1

More than 1 year has passed since last update.

rails6.1から追加された`compact_blank`について

Last updated at Posted at 2021-12-28

概要

例えば、Arrayにnilが入りうる可能性がある場合にnilを取り除きたいケースがあった場合に最小の行動で表すとreject(&:blank?)を使っていたがその処理のショートハンドができました。

> [1, 2, nil, 3, "", []].compact_blank
=> [1, 2, 3]

> [1, 2, nil, 3, "", []].compact_blank
=> [1, 2, 3]

追加されたPR

7
1
2

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
7
1