Skip to content

Instantly share code, notes, and snippets.

@t3hnar
Created November 22, 2011 10:07
Show Gist options
  • Save t3hnar/1385345 to your computer and use it in GitHub Desktop.
Save t3hnar/1385345 to your computer and use it in GitHub Desktop.
package scala
/**
* @author Yaroslav Klymko
*/
object StringOption {
def apply(s: String): Option[String] = s match {
case null | "" => None
case _ => Some(s)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment