Skip to content

Instantly share code, notes, and snippets.

@hiramekun
Created March 11, 2023 03:36
Show Gist options
  • Save hiramekun/cc4cd35488a3198566858060d0506c48 to your computer and use it in GitHub Desktop.
Save hiramekun/cc4cd35488a3198566858060d0506c48 to your computer and use it in GitHub Desktop.
CollectFirstSome
private def collectFirstSome[A, B](seq: Seq[A])(fn: A => Option[B]): Option[B] = {
seq.collectFirst(Function.unlift(fn))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment