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

使用忽略的接收器列表可以指定用作应该忽略的接收器的方法调用(例如,分别用于实例或单例方法的 Foo#callFoo::call)。

示例:

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