OptionSome(x)의 상등 관계 검사를 단순화할 수 있음을 보고한다.

예:


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

빠른 수정 적용 후:


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