collection.collect(f).headOption を報告し、可能な場合に collection.collectFirst(f) に置換することを提案します。
collection.collect(f).headOption
collection.collectFirst(f)
例:
val x: Set[Int] x.collect(f).headOption
クイックフィックス適用後:
val x: Set[Int] x.collectFirst(f)