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)