Min/max with Option[T] for possibly empty Seq?

后端 未结 10 942
别那么骄傲
别那么骄傲 2021-01-31 14:03

I\'m doing a bit of Scala gymnastics where I have Seq[T] in which I try to find the \"smallest\" element. This is what I do right now:

val leastOrNo         


        
10条回答
  •  清酒与你
    2021-01-31 14:22

    For scala < 2.13

    Try(seq.minBy(_.something)).toOption
    

    For scala 2.13

    seq.minByOption(_.something)
    

提交回复
热议问题