Reports the use of the safe navigation operator (&.) with a non-nil receiver, which can be omitted.

無視対象のレシーバーリストを使用して、無視すべきレシーバーとして使用されるメソッドの呼び出しを指定します (例: インスタンスまたはシングルトンメソッドの Foo#call または Foo::call)。

例:

value = 1
if value&.even?
  # ...
end