Skip to content

Instantly share code, notes, and snippets.

@lapointexavier
Last active August 29, 2015 14:07
Show Gist options
  • Save lapointexavier/769b8441218ffdea90d8 to your computer and use it in GitHub Desktop.
Save lapointexavier/769b8441218ffdea90d8 to your computer and use it in GitHub Desktop.
Returns first non-null element
/**
* Returns the first non null element
* @param opts List of Argot Option to select from
* @return Option[String] or null
*/
def getFirst(opts: List[Option[String]]) = opts.view.flatMap((o: Option[String])=>o).headOption
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment