OptionSome(x) の等価チェックを単純化できることを報告します。

例:


  option == Some(x)
  Some(x) != option

クイックフィックス適用後:


  option.contains(x)
  !option.contains(x)